1樓:萍沐曇雨
**如下:
select table_schema,table_name from information_schema.`columns` where column_name = 'col1'
col1為子段名版。權
mysql檢視欄位在哪個表中 檢視欄位在哪個資料庫的哪張表中
2樓:匿名使用者
use information_schema;
select * from columns where column_name='欄位名' ;
mysql資料庫中如何查詢出一個欄位所屬的表名子
3樓:匿名使用者
select table_schema,table_name from information_schema.columns where column_name = 'htmlpath'
用這條語句就能查詢出
來內,其中 table_schema 是所在容庫, table_name 是所在表
4樓:匿名使用者
你把資料庫表結構備份下,然後查詢備份檔案不就可以了,也不復雜。
如何查詢資料庫中某個欄位在哪個表裡啊?我的資料庫是mysql的。
5樓:
mysql庫中有
結構在這個庫中有記載
6樓:匿名使用者
select * from information_schema.columns;
mysql一張表中如何查詢某個欄位最長值的那條記錄
1 一般查詢語句 select lcontent from caiji ym liuyan 查詢資料 2 有些時候需要查詢某個欄位的長度為多少時候才顯示資料 sql語句 select lcontent from caiji ym liuyan where length lcontent 40 ps ...
mysql sql過濾查詢我要查詢欄位裡的某個值不顯示,其他內容都顯示。這個語句怎麼寫
select age from student where age 18 查詢年齡不為18 sql語句查詢除某一列以外的其他所有列?跪求 如果你想直接在sql查詢語句中這麼做,很遺憾地告訴你,不可以,你只能是列出你想要的所有列,不過有幾個簡單的方法可以幫你快速得到這個sql,通過mangement ...
mysql如何更新表中的某個欄位值等於另表的某個欄位
update tb mon verification tk set 新欄位 舊欄位 例如 a表 id name credits 1 aa 11 2 aa 222 3 bb 11 4 bb 222 b表id name credits 1 aa 222 2 bb 222 操作的是a表,能不能有什麼辦法讓...