有四種方式進行判斷:?
12
3
4
5
1. show tables
like
'%tb_bp_d_case%'
;
2.
select
table_name
from
information_schema.tables
where
table_schema=
'dbname'
and
table_name=
'tablename'
;
3. 如果表不存在就建立這個表,那麼可以直接用 create table if not exists tablename 這樣的指令來建立,不需要先去查詢表是否存在。
4. 從模板表建立表:?
1create
table
if
not
exists
like
old_table_name;
判斷臨時表是否存在
if object id tempdb.t is not null drop table t if objectproperty object id tempdb.t istable 1 print authors is a table else if objectproperty object i...
sqlserver判斷表是否存在
1 判斷資料表是否存在 方法一 use yourdb goif object id n tablename n u is not null print 存在 else print 不存在 例如 use fireweb goif object id n temp tbl n u is not null...
SQL Server 判斷表是否存在
1 判斷資料表是否存在 方法一 use yourdb goif object id n tablename n u is not null print 存在 else print 不存在 例如 use fireweb goif object id n temp tbl n u is not null...