黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

SQLite 創(chuàng)建表


sqlite 的 create table 語(yǔ)句用于在任何給定的數(shù)據(jù)庫(kù)創(chuàng)建一個(gè)新表。創(chuàng)建基本表,涉及到命名表、定義列及每一列的數(shù)據(jù)類(lèi)型。

 

1. 語(yǔ)法

create table 語(yǔ)句的基本語(yǔ)法如下:

create table database_name.table_name(
   column1 datatype  primary key(one or more columns),
   column2 datatype,
   column3 datatype,
   .....
   columnn datatype,
);

create table 是告訴數(shù)據(jù)庫(kù)系統(tǒng)創(chuàng)建一個(gè)新表的關(guān)鍵字。create table 語(yǔ)句后跟著表的唯一的名稱(chēng)或標(biāo)識(shí)。您也可以選擇指定帶有 table_name 的 database_name。

 

2. 范例

下面是一個(gè)范例,它創(chuàng)建了一個(gè) company 表,id 作為主鍵,not null 的約束表示在表中創(chuàng)建紀(jì)錄時(shí)這些字段不能為 null:

sqlite> create table company(
   id int primary key     not null,
   name           text    not null,
   age            int     not null,
   address        char(50),
   salary         real
);

讓我們?cè)賱?chuàng)建一個(gè)表,我們將在隨后章節(jié)的練習(xí)中使用:

sqlite> create table department(
   id int primary key      not null,
   dept           char(50) not null,
   emp_id         int      not null
);

您可以使用 sqlite 命令中的 .tables 命令來(lái)驗(yàn)證表是否已成功創(chuàng)建,該命令用于列出附加數(shù)據(jù)庫(kù)中的所有表。

sqlite>.tables
company     department

在這里,可以看到我們剛創(chuàng)建的兩張表 company、 department。

您可以使用 sqlite .schema 命令得到表的完整信息,如下所示:

sqlite>.schema company
create table company(
   id int primary key     not null,
   name           text    not null,
   age            int     not null,
   address        char(50),
   salary         real
);

下一節(jié):sqlite 刪除表

sqlite教程

相關(guān)文章