SELECTcount(*)
FROM information_schema.COLUMNS
WHERE TABLE_SCHEMA='cpm888'AND table_name ='deposit'
# 'cpm888'对应数据库名字, 'deposit'对应表,原理是查出表中有多少个字段,一个字段对于一列
查找表中有多少行
SELECTcount(*)
FROM deposit
# deposit 对应表名
posted on
2018-11-02 12:24tt-wedos
阅读(1576)
评论(0)
编辑收藏举报