Summary for SQL Statements
Summarize the key insights you’ve explored about SQL statements in MySQL.
We'll cover the following...
The basic building block of SQL is a statement. Chaining multiple statements with the ;
delimiter produces a complete SQL script. SQL statements can be identified as data definition and data manipulation statements, most prominently. In addition to these two groups, though, there are also statements for controlling SQL transactions, prepared statements, and administrative statements.
User-defined variables
To introduce a user-defined variable, MySQL uses the SET
operator followed by the variable written as @variable
where variable
is the variable name consisting of alphanumerical ...
Access this course and 1400+ top-rated courses and projects.