MySQL判斷表是否存在

2021-06-20 06:13:05 字數 703 閱讀 9924

有四種方式進行判斷:?

12

3

4

5

1. show tableslike'%tb_bp_d_case%';

2.selecttable_namefrominformation_schema.tableswhere

table_schema='dbname'andtable_name='tablename';

3. 如果表不存在就建立這個表,那麼可以直接用 create table if not exists tablename 這樣的指令來建立,不需要先去查詢表是否存在。

4. 從模板表建立表:?

1createtableifnotexistslikeold_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...