MySQL database sql command to view table attributes, mysql to view the maximum value of each field of the specified table, whether it is empty, and other attributes example demonstration

Method One:
desc back + table name to view the property sheet.

desc information_schema.processlist;

Method 2:
Use show columns from + table name to view.

show columns from information_schema.processlist;

Insert picture description here
Insert picture description here

Like it if you like it ❤!

Guess you like

Origin blog.csdn.net/qq_38161040/article/details/108734269