欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

mysql查詢多少表,mysql怎么查看表定義

錢多多2年前20瀏覽0評論
mysql查詢多少表,mysql怎么查看表定義?

MYSQL 查看表定義的 4 種方法

方法 1、

show create table table_name;可以用這個看表的代碼。

show create table Strings;

方法 2、

show full columns from table_name;

show full columns from Strings;

方法 3、

show columns from table_name;

show columns from Strings;

方法 4、

describe table_name;