正在看的oracle教程是:oracle用什么sql语句判断表存不存在。sql server用来判断表或视图存在的语句在oracle中不能用,请问该怎么写。
谢谢。 提问者: – 最佳答案 exists(select tname from tab where tname =’tablename’)
记得表名要大写,因为oracle是区分大小写的,所有的表名都存放在tab表中
正在看的oracle教程是:oracle用什么sql语句判断表存不存在。sql server用来判断表或视图存在的语句在oracle中不能用,请问该怎么写。
谢谢。 提问者: – 最佳答案 exists(select tname from tab where tname =’tablename’)
记得表名要大写,因为oracle是区分大小写的,所有的表名都存放在tab表中