知道m(xù)ysql基本語法
發(fā)表時間:2023-09-04 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]創(chuàng)建表 create table <表名>(<字段名> 類型(長度) not null primary key auto_increment, **主鍵name char(20) not null, sex int(4) not null default 0, **默認...
創(chuàng)建表
create table <表名>(
<字段名> 類型(長度) not null primary key auto_increment, **主鍵
name char(20) not null,
sex int(4) not null default '0', **默認鍵
degree double(16,2)
)
刪除表
drop table <表名>;
//情空表
delete from <表名>;
插入數(shù)據(jù)
insert into <表名> [( <字段名1>[,..<字段名n > ])] values ( 值1 )[, ( 值n )]
查詢表
select <字段1,字段2,...> from < 表名 > where < 表達式 >
查詢表的前幾個字段
select * from MyClass order by id limit 0,2;
查詢字段總和
select sum('字段名') from 表名
查詢字段 按照升序降序排列
降序:select * from 表名 where 表達式 order by 字段名 desc
升序:select * from 表名 where Putout=true order by time asc
刪除表
delete from 表名 where 表達式
修改表
update 表名 set 字段=新值,… where 條件
添加表字段
alter table 表名 add 字段 類型 其他;
<1 主鍵:alter table 表名 add primary key (字段名);
<2 唯一約束:alter table 表名 add unique 索引名 (字段名);
刪除表字段
alter table 表名 drop 字段名
以上就是了解mysql基本語法的詳細內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!
學習教程快速掌握從入門到精通的SQL知識。