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

How do I find the database name in mysql?

0 Answers  


What does tee command do in MySQL?

1 Answers  


How to check if a record exists in a mysql database php?

0 Answers  


What is the datatype of image in mysql?

0 Answers  


How do I restore a mysql database dump file in linux?

0 Answers  






How can you make a database as your current database?

0 Answers  


What is mysql community server?

0 Answers  


Is mysql written in c?

0 Answers  


What is the difference between unix timestamp and mysql timestamp?

0 Answers  


i made a table in sql server 2000 and in a column i want to add image path of a picture present in my hardisk... so using insert statement how will i insert the path of the image in the table??

1 Answers   WebTech,


What?s the default port for MySQL Server?

4 Answers   Yahoo,


What are the 'mysql' command line options?

0 Answers  


Categories