您现在的位置是:首页 >其他 >sql语句查询数据库字段和表字段数量网站首页其他
sql语句查询数据库字段和表字段数量
》新建数据库:CREATE DATABASE IF NOT EXISTS 数据库名;
示例::CREATE DATABASE IF NOT EXISTS test_db;
》进入数据库:use 数据库名称; 示例:use test_db;
》数据库中创建表: create table 表名(字段名 字段类型(长度),字段名 字段类型(长度));
示例:table name_info1(id2 int(5),name2 char(12));
--备注:int是整型数据,char是字符型数据。
》显示数据库有多少张表:show tables;
》显示数据库有多少字段(数据项)
select count(*) from information_schema. COLUMNS where TABLE_SCHEMA = '数据库名称';
示例:select count(*) from information_schema. COLUMNS where TABLE_SCHEMA = 'test_db';
备注:
-- information_schema 是mysql数据库中的默认数据库,information_schema库中有个COLUMNS表,里面记录了mysql所有库中所有表的字段信息;
--TABLE_SCHEMA:数据库名
》统计某张表的字段数量
select count(*) from information_schema. columns where table_schema = '数据库名称' and table_name = '表名称';
示例:select count(*) from information_schema. columns where table_schema = 'test_db' and table_name = 'name';