SQLite 創(chuàng)建表
sqlite 的 create table 語句用于在任何給定的數(shù)據(jù)庫創(chuàng)建一個新表。創(chuàng)建基本表,涉及到命名表、定義列及每一列的數(shù)據(jù)類型。
1. 語法
create table 語句的基本語法如下:
create table database_name.table_name( column1 datatype primary key(one or more columns), column2 datatype, column3 datatype, ..... columnn datatype, );
create table 是告訴數(shù)據(jù)庫系統(tǒng)創(chuàng)建一個新表的關(guān)鍵字。create table 語句后跟著表的唯一的名稱或標(biāo)識。您也可以選擇指定帶有 table_name 的 database_name。
2. 范例
下面是一個范例,它創(chuàng)建了一個 company 表,id 作為主鍵,not null 的約束表示在表中創(chuàng)建紀(jì)錄時這些字段不能為 null:
sqlite> create table company( id int primary key not null, name text not null, age int not null, address char(50), salary real );
讓我們再創(chuàng)建一個表,我們將在隨后章節(jié)的練習(xí)中使用:
sqlite> create table department( id int primary key not null, dept char(50) not null, emp_id int not null );
您可以使用 sqlite 命令中的 .tables 命令來驗證表是否已成功創(chuàng)建,該命令用于列出附加數(shù)據(jù)庫中的所有表。
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 );