查詢數據核心語法

1、查庫
select schema_name from information_schema.schemata

2\ 查表
select table_name from information_schema.tables where table_schema=庫名

3、查列
select column_name from information_schema.columns where table_name=表名

4、查數據
select 列名 from 庫名.表名

查詢數據核心語法
查詢數據核心語法

查詢數據核心語法
查詢數據核心語法

查詢數據核心語法
查詢數據核心語法

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章