What different Stored Objects are supported in MySQL?



What different Stored Objects are supported in MySQL?..

Answer / hrindows@gmail.com

Different stored objects in MySQL include VIEW, STORED PROCEDURE, STORED FUNCTION, TRIGGER, EVENT.
• VIEW - It is a virtual table based on a result set of a database query.
• STORED PROCEDURE - It is a procedure stored in database which can be called using CALL statement. Stored procedure does not return a value.






• STORED FUNCTION - It is like function calls which can contain logic. It returns a single value and can be called from another statement.
• TRIGGER - Trigger is program which is associated with a database table which can be invoked before or after insert, delete or update operations.
• EVENT - Event is used to run a program or set of commands at defined schedule.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More MySQL Interview Questions

What is sharding in mysql?

0 Answers  


What is mysqli_select_db?

0 Answers  


What is field in mysql?

0 Answers  


How do I show all mysql databases?

0 Answers  


Why we use mysql workbench?

0 Answers  






What are date and time data types in mysql?

0 Answers  


Is mysql open source?

0 Answers  


How can we find out which auto increment was assigned on Last insert?

0 Answers  


What can I do with mysql?

0 Answers  


What is a crosstab query?

0 Answers  


What is the difference between MyISAM Static and MyISAM Dynamic?

0 Answers  


can you tell what are the different set operations available in mysql? : Mysql dba

0 Answers  


Categories