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, 2571🔥, 0💬
Popular Posts:
How To View Data Files in the Current Database in Oracle? If you want to get a list of all tablespac...
How To Verify Your PHP Installation in MySQL? PHP provides two execution interfaces: Command Line In...
How To Enter Unicode Character String Literals in SQL Server Transact-SQL? Unicode characters are mu...
What Privilege Is Needed for a User to Delete Rows from Tables in Another Schema in Oracle? For a us...
What Happens to Your Transactions When ERROR 1205 Occurred in MySQL? If your transaction receives th...