1、SQL Server语法如下(如查询包含spt的表)
select name from sys.objects where type='U' and name like '%spt%'2、Oracle语法如下(如查询包含test的表)
select table_name from user_tables where table_name like '%TEST%'注意:Oracle中,表名处的字母一定要大写
欢迎分享,转载请注明来源:内存溢出
1、SQL Server语法如下(如查询包含spt的表)
select name from sys.objects where type='U' and name like '%spt%'2、Oracle语法如下(如查询包含test的表)
select table_name from user_tables where table_name like '%TEST%'注意:Oracle中,表名处的字母一定要大写
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)