溫馨提示×

sqlite創(chuàng)建數(shù)據(jù)表的方法是什么

小億
118
2024-04-10 15:17:36
欄目: 云計算

在SQLite中創(chuàng)建數(shù)據(jù)表的方法是使用CREATE TABLE語句,語法格式如下:

CREATE TABLE table_name (
    column1 data_type constraints,
    column2 data_type constraints,
    ...
);

其中,table_name是表的名稱,column1、column2等是表的列名,data_type是列的數(shù)據(jù)類型,constraints是列的約束條件。例如,創(chuàng)建一個名為users的表,包含id、name和age三個列,可以使用如下代碼:

CREATE TABLE users (
    id INTEGER PRIMARY KEY,
    name TEXT NOT NULL,
    age INTEGER
);

0