显示Oracle数据库表中的列有以下两种方式。
1、在命令窗口下输入desc 表名。
如:
desc test2、通过sql语句查询,语句如下:
select * from user_tab_cols where table_name='TEST'注意:表名必须大写。
不能用 comment 作为列名, 这是保留字, 换成comment1 OKcreate table ApproveComment (acId number(19,0) not null, agreed number(1,0), approverTime timestamp, comment1 varchar2(255 char), alternate_userId number(19,0),approver_userId number(19,0), primary key (acId))
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)