1

可能重复:
SQL Server:检查表是否存在

我正在使用 Java 和 MS SQL Server 2008,我只想在检查数据库中是否不存在该表后创建一个表。

 public void addTestTable(){
  jdbcTemplate.execute(
            "create table [mydatabase].[dbo].[test] (ID integer not null identity, CREATEDBY varchar(50), CREATEDAT datetime, TITLE varchar(50), NRQUEST int, FORGROUP int, primary key(id))"

            );

}

这是我的 createTable 函数,我需要另一个布尔函数来检查表是否已经存在,但我不知道如何为其编写 sql 语句。有人可以帮我吗?

4

3 回答 3

2
IF OBJECT_ID('tablename','U') is not null
-- table exists 

或者

SELECT *
   FROM sys.tables
   WHERE name = 'mytable'
   AND schema_id = SCHEMA_ID('myschema')
于 2012-07-03T11:15:13.710 回答
0

if not exists(select 1 from sys.tables where name ='test' and schema_id = SCHEMA_ID('dbo'))
begin
  create table [dbo].[test] (ID integer not null identity, CREATEDBY varchar(50), 
  CREATEDAT datetime, TITLE varchar(50), NRQUEST int, FORGROUP int, primary key(id)) 
  print 'table created'
end
go
于 2012-07-03T11:44:06.543 回答
0
IF NOT EXISTS (SELECT * 
                 FROM INFORMATION_SCHEMA.TABLES 
                 WHERE TABLE_SCHEMA = 'testSchema' 
                 AND  TABLE_NAME = 'testTable')
BEGIN
    --create table
END
于 2012-07-03T11:23:15.083 回答