标签:on c sql oracle table r rom user server
SQL Server写法
select [name] from sysobjects where id in(select id from syscolumns Where name=‘StudentID‘)
Oracle写法
select TABLE_NAME from SYS.USER_CONS_COLUMNS where COLUMN_NAME =‘StudentID‘
标签:on c sql oracle table r rom user server
原文地址:http://www.cnblogs.com/hlfei/p/3951661.html