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 view? How can you create and drop view in mysql?

0 Answers  


What is the maximum no of columns a table can have?

0 Answers  


Where is mysql password stored?

0 Answers  


How do I truncate all tables in mysql?

0 Answers  


How can you see all indexes defined for a table?

0 Answers  


what is the difrence between sql and pl/sql

21 Answers   Wipro,


Why should I learn mysql?

0 Answers  


How would you enter characters as hex numbers?

0 Answers  


What is mysql database server?

0 Answers  


Table A has 5 rows and table B has 0 rows Cartesian join on A,B will have----rows

2 Answers  


How do I download mysql?

0 Answers  


What are the different mysql database engines?

0 Answers  


Categories