Collections:
DDL Commands Supported in MySQL
How Many SQL DDL Commands Are Supported by "mysql" in MySQL?
✍: FYIcenter.com
There are 4 SQL Data Definition Language (DDL) commands that are supported by "mysql". They are listed below with short descriptions:
Here is a tutorial exercise of how to use DDL commands to create a database and a table:
>cd \mysql\bin >mysql -u root mysql> CREATE DATABASE fyi; Query OK, 1 row affected (0.50 sec) mysql> CREATE TABLE articles (name VARCHAR(80)); Query OK, 0 rows affected (0.25 sec) mysql> DROP DATABASE fyi; Query OK, 0 rows affected (0.41 sec)
⇒ DML Commands Supported in MySQL
⇐ "mysql" Command Line Arguments in MySQL
2018-04-21, 2510🔥, 0💬
Popular Posts:
What Is an Oracle Tablespace in Oracle? An Oracle tablespace is a big unit of logical storage in an ...
How REAL and FLOAT Literal Values Are Rounded in SQL Server Transact-SQL? By definition, FLOAT(n) sh...
How to download and install the scaled-down database AdventureWorksLT in SQL Server? If you want to ...
How To Insert New Line Characters into Strings in SQL Server Transact-SQL? If you want to break a st...
How To Create a Dynamic Cursor with the DYNAMIC Option in SQL Server Transact-SQL? If the underlying...