sql里如何判断该表存不存在附件
发布网友
发布时间:2022-04-13 06:39
我来回答
共1个回答
热心网友
时间:2022-04-13 08:09
使用exists判断。
以Oracle为示例:
exists(select 1 from all_tables u where 条件一:*用户名 and 条件二:*表名)
查询系统字典表all_tables,判断表是否存在,存在则结果为真;不存在则结果为假
通过结合if语句使用:
if exists(select 1 from all_tables u where 条件一:*用户名 and 条件二:*表名) then 执行子句一
else 执行子句二;