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 does mysql flush tables do?

0 Answers  


Which is faster innodb or myisam?

0 Answers  


What is blob in mysql?

0 Answers  


What is text in mysql?

0 Answers  


Is mysql relational?

0 Answers  






What is a text delimiter?

0 Answers  


What is inner join in mysql?

0 Answers  


What are the advantages/disadvantages of mysql and php?

0 Answers  


What are the benefits of mysql?

0 Answers  


I want to make a query where I want to eliminate the duplicate rows from the table. For example : Input : Table : NAME Column1 Column2 India USA USA India UK India India UK The desired output that I want to eliminate the duplicates Output India USA UK India Thanks

2 Answers   Sun Life,


How to check if value already exists in mysql database in php?

0 Answers  


In mysql, what is the default storage engine?

0 Answers  


Categories