Oracle如何查询一个表中两列相同的行号
发布网友
发布时间:2022-05-15 15:46
我来回答
共2个回答
热心网友
时间:2024-02-25 01:27
-表的字段名称
select name from syscolumns where id=object_id( '表名 ')
--表的字段数
select count(name) from syscolumns where id=object_id( '表名 ')
最好改成:object_id(N '表名 ')
这样只是规范一些,一般不会出错
select name from syscolumns where id=object_id(N '表名 ')--列名
select name from sysobjects where xtype= 'U '--表名
select name from sysobjects where xtype= 'P '--存储过程
热心网友
时间:2024-02-25 01:27
select t.id from 表名 t where t.name1=t.name2