MySql 查询数据库中所有表

查询数据库中所有表名
select table_name from information_schema.tables where table_schema=‘csdb‘ and table_type=‘base table‘;

查询指定数据库中指定表的所有字段名column_name
select column_name from information_schema.columns where table_schema=‘csdb‘ and table_name=‘users‘

原文地址:https://www.cnblogs.com/xysun/p/12582274.html

时间: 2024-12-14 10:52:36

MySql 查询数据库中所有表的相关文章

MySql 查询数据库中所有表名

查询数据库中所有表名select table_name from information_schema.tables where table_schema='csdb' and table_type='base table'; 查询指定数据库中指定表的所有字段名column_nameselect column_name from information_schema.columns where table_schema='csdb' and table_name='users'

MySQL删除数据库中所有表方法

MySQL删除数据库中所有表方法技术 maybe yes 发表于2015-01-23 12:16 原文链接 : http://blog.lmlphp.com/archives/66  来自 : LMLPHP后院 通过使用 CONCAT 函数将数据库表名称和需要执行的 SQL 语句连接起来,输出在控制台:然后从控制台复制这些内容,粘贴,执行,OK.table_schema 条件为需要操作的数据库名称,参考 SQL 语句如下: SELECT CONCAT('DROP TABLE IF EXISTS 

查询数据库中所有表的记录数,所占空间,索引使用空间

常用 --查询数据库中所有表的记录数,所占空间,索引使用空间 exec sp_MSForEachTable @precommand=N'create table ##(表名 sysname,记录数 int,保留空间 Nvarchar(20),使用空间 varchar(20),索引使用空间 varchar(20),未用空间 varchar(20))', @command1=N'insert ## exec sp_spaceused ''?''', @postcommand=N'select * f

mysql查看数据库中所有表的行数,并进行排序

mysql查看数据库中所有表的行数,并进行排序: 进行数据库迁移或还原后,可以通过比较行数,检查数据是否正确. mysql> use information_schema; mysql> select table_name,table_rows from tables where TABLE_SCHEMA= 'kpsumi' order by table_rows desc; 原文地址:http://blog.51cto.com/9285090/2119096

mysql查询数据库中包含某字段(列名)的所有表

SELECT TABLE_NAME '表名',TABLE_SCHEMA '数据库名',ORDINAL_POSITION '顺序',COLUMN_NAME '字段',DATA_TYPE '类型' ,CHARACTER_OCTET_LENGTH '字节长',if(COLUMN_KEY='PRI',"√","") '主键',if(EXTRA='auto_increment',"√","") '自增长' ,if(IS_NULLABLE

mysql查询数据库大小和表

每个mysql都有一个库information_schema,里面有一张表TABLES存储了所有数据库表的信息,因此,可以从这张表中查看数据库大小和表大小 查询数据库大小 select concat(round((sum(data_length)+sum(index_length))/1024/1024/1024,2),'GB') as data from information_schema.tables where table_schema='esb'; 查询数据库中表大小 select c

【MySql】查询数据库中所有表及列的信息

1 SELECT 2 TABLE_NAME, -- 表名 3 COLUMN_NAME, -- 字段名 4 DATA_TYPE, -- 字段类型 5 COLUMN_COMMENT -- 字段注释 6 FROM 7 INFORMATION_SCHEMA.COLUMNS 8 WHERE TABLE_SCHEMA = '数据库名称'

MySQL查询数据库中所有数据表的数据条数

select table_name,table_rows from information_schema.tables where TABLE_SCHEMA = '数据库名称' order by table_rows desc; 原文地址:https://www.cnblogs.com/yulongcode/p/11395928.html

Sql Server 2008查询数据库中各表记录行数

declare @low int , @unit varchar(10) , @val decimal(18,4) set @unit = 'KB'set @val = case when @unit = 'KB' then 1024 when @unit = 'MB' then 1024*1024 else 1 end select @low = d.low from master.dbo.spt_values dwhere d.number = 1 and d.type = 'E' SELE