mysql的一些操作

查询mysql中某张表有多少列:

SELECT

COUNT(*)

FROM

information_schema. COLUMNS

WHERE

table_schema = '数据库名'

AND table_name = '表名';

 

posted @ 2018-04-26 17:11  月河  阅读(82)  评论(0编辑  收藏  举报