Query ddl object information through sql statement

1. Display all databases in MySQL;
show databases;
2. View the create database statement
show create database database name;

The query is the create SQL statement, which seems very unintuitive

Select the SQL statement and click the text to view the information of the corresponding field

Guess you like

Origin blog.csdn.net/bugua3542/article/details/115868802