(1) 判斷資料庫存在, 則刪除:
drop database if exists db_name;
(2) 判斷資料表存在, 則刪除:
drop table if exists table_name;
注: db_name, table_name可用``(1鍵旁邊那個鍵)號引起來, 也可不引起來.
(1) 如果單純顯示是否存在資料庫, 則可用
show databases like 'db_name';
(2) 單純顯示是否存在資料表, 則可用
show tables like 'table_name';
注: 這裡db_name, table_name必須用』』(單引號)引起來.
判斷特定的乙個表是否存在
select table_name from information_schema.tables where table_name ='yourname';
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...
sqlserver中判斷表或臨時表是否存在
方法一 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 print 存在 el...
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...