给表格加注释后查询这条注释时出现问题:
给表加注释
comment on table emp is ‘employee table‘;
查询注释
select COMMENTS from user_tab_comments where table_name=‘emp‘;
结果:
未选定行
改动语句:
select COMMENTS from user_tab_comments where table_name=‘EMP‘;
查询出结果。
原因:
用create创建表格,在字典表中 表格名称默认为大写,所以用字典表查询的时候要查大写的表名。
如果要建立小写的表名,用” “。
时间: 2024-11-14 23:53:33