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 |
What does mysql flush tables do?
Which is faster innodb or myisam?
What is blob in mysql?
What is text in mysql?
Is mysql relational?
What is a text delimiter?
What is inner join in mysql?
What are the advantages/disadvantages of mysql and php?
What are the benefits of mysql?
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
How to check if value already exists in mysql database in php?
In mysql, what is the default storage engine?