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 the difference between timestamp and datetime in mysql?

0 Answers  


How do I connect to a database in mysql workbench?

0 Answers  


What is ibdata1?

0 Answers  


Write a query to find duplicate rows in table?

0 Answers  


What are the differences between binary and varbinary?

0 Answers  






Can you save your connection settings to a conf file?

1 Answers  


What is the latest version of php and mysql?

0 Answers  


what is the default port for mysql server? : Mysql dba

0 Answers  


What mysql -u john -p command does?

0 Answers  


How do I zip a file in mysql?

0 Answers  


How do I edit a trigger in mysql?

0 Answers  


How to Creating a new user. Login as root. Switch to the MySQL db. Make the user. Update privs.

0 Answers  


Categories