在数据库开发过程中,我们会遇到这样的情况:不知道英文字段对应的中文意思。那该怎么办呢?今天教你一招!
1 -- 表名注释 2 select * from all_tab_comments where Table_Name='B_MERCH' and owner = 'POSP'; 3 -- 表字段注释 4 select * from all_col_comments where Table_Name='B_MERCH' 5 -- 一步实现 6 SELECT b.column_name columnName --字段名 7 ,b.data_type dataType --字段类型 8 ,b.data_length dataLength --字段长度 9 ,b.data_precision dataPrecision --字段长度 10 ,b.data_scale dataScale --字段长度 11 ,b.NULLABLE nullable --可为空 12 ,a.comments comments --字段注释 13 FROM all_col_comments a --注释表 14 ,all_tab_columns b --列表 15 WHERE a.table_name = b.table_name and a.OWNER = b.OWNER and a.Column_name = b.Column_name and 16 a.table_name = 'B_MERCH' and a.OWNER='POSP'
标签:name,--,数据库,comments,注释,ORCAL,data,段长度 From: https://www.cnblogs.com/lsxs-wy/p/17773491.html