What different Stored Objects are supported in MySQL?
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 |
How do I find the database name in mysql?
What does tee command do in MySQL?
How to check if a record exists in a mysql database php?
What is the datatype of image in mysql?
How do I restore a mysql database dump file in linux?
How can you make a database as your current database?
What is mysql community server?
Is mysql written in c?
What is the difference between unix timestamp and mysql timestamp?
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??
What?s the default port for MySQL Server?
What are the 'mysql' command line options?