在Sqlite中创建多个表

时间:2017-05-23 21:06:49

标签: sqlite

我在SQlite数据库中创建了2个表:

create table [Files]
(
  Id int identity not null
    constraint PK_File_Id primary key,
  MimeType nvarchar (400) not null,
  Name nvarchar (280) null
);

create table [Languages]
( 
  Code nvarchar (4) not null
    constraint PK_Language_Code primary key,
  Name nvarchar (80) not null
    constraint UQ_Language_Name unique                   
);

当我运行查询时,只创建了Files表。为什么呢?

0 个答案:

没有答案
相关问题