sql查询语句
Posted 扰扰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql查询语句相关的知识,希望对你有一定的参考价值。
//查询表的字段名和字段类型
select column_name,data_type from information_schema.columns
where table_name = ‘表名‘
//查询数据库对应的所有表名
select [id], [name] from [sysobjects] where [type] = ‘u‘ order by [name]
//查询数据库所有数据库名
//1.链接字符串
Data Source=.;Initial Catalog=master;Integrated Security = SSPI;
//2.查询语句
SELECT Name FROM Master..SysDatabases ORDER BY Name
以上是关于sql查询语句的主要内容,如果未能解决你的问题,请参考以下文章
Elasticsearch 查询语法 --- 2022-04-03