What is def in the following MySQL statement?CREATE TRIGGER abc (...) (...) ON def FOR EACH ROW ghi;

🎲 Try a Random Question  |  Total Questions in Quiz: 50  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
MySQL Basics Practice Test: Stored Programs — practice the complete quiz, review flashcards, or try a random question.

Quiz on compound statements, stored functions, triggers, events and security. A MySQL stored program is a program that is stored in the database and can be a function, procedure, table trigger, or event. Stored programs are represented in memory by two major parts: - The code of the stored program, including SQL statements and control flow logic - A symbol table that describes all the local variables, cursors, labels, conditions, and so on declared in the code  Most MySQL stored programs consist of one or more blocks. A block consists of various types of declarations and program code,... Show more

What is def in the following MySQL statement?<br>CREATE TRIGGER abc (...) (...) ON def FOR EACH ROW ghi;