SQL語句總結

2021-09-13 18:02:52 字數 714 閱讀 5185

【前言】

本文總結下sql語句,

舉個例子:

create table sp_email(

id int(11) not null auto_increment,

from_id int(11) not null comment'傳送者id',

to_id int(11) not null comment'接收者id',

title varchar(50) not null comment'標題',

file varchar(255) default null comment'檔案',

hasfile smallint(1) default '0' comment'是否有附件',

filename varchar(255) default null comment'檔案原始名',

content text comment'內容',

addtime int(11) default null comment'新增時間',

isread smallint(1) default '0' comment'是否已讀',

primary key(id)

)engine=myisam auto_increment=1 default charset=utf8;

①後面的comment為注釋,方便開發人員分辨 ②

auto_increment=1表示從1開始自增 ③

SQL語句總結

create table customer id int 11 not null auto increment,lastname char 50 default null,firstname char 50 default null,address char 50 default null,city...

sql語句總結

sql語句 分為兩大類 針對資料庫database和表table的操作 建立create 刪除drop 修改alter 檢視show 建立乙個資料庫 create database mydb 刪除表drop table users 針對表中的記錄 資料 的操作 增insert語句 刪delete語句...

SQL語句總結

dml資料操作語言 create db 建立資料庫 語法 create database database name 實際 建立乙個名為my db的資料庫 create database my db create table 建立資料庫中表 建立新錶 語法 create table 表名稱 列名稱1...