檢視某個資料下的表及其備註:
select table_name,table_comment from information_schema.tables where table_schema='db' ;只要改後面的table_schema為你的資料庫名
結果:
檢視某個表下的字段及其備註
desc 表名;show columns from 表名;
describe 表名;
show create table 表名;
select column_name,column_commentfrom
information_schema.columns
where
table_name = '表名'
and table_schema='資料庫名'
information_schema.columns:
table_schema,table_name,column_name, column_type, column_key
Sql Server 查詢表名的備註
查詢表名描述 ms description select tbs.name 表名,ds.value 描述 from sys.extended properties ds left join sysobjects tbs on ds.major id tbs.id where ds.minor id ...
svn diff 命令 只顯示檔名
這個命令可以顯示版本2333和版本6666之間的差異資訊 svn diff r 2333 6666 個命令的輸出結果中包含大量的資訊,如果是文字檔案之間的差異還會之間把檔案內容也輸出出來。但有時候我們只想獲得存在差異的檔案的檔名,不需要其他資訊,那麼可以使用 summarize 選項 svn dif...
linux ls 命令只顯示目錄和只顯示檔案
ls f grep bin build dir config dl docs feeds include package scripts staging dir target tmp toolchain tools ls al grep d drwxr xr x 17 cheng cheng 409...