數(shù)據(jù)庫設(shè)置中常用的sql命令
發(fā)表時(shí)間:2023-07-21 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]操作數(shù)據(jù)庫結(jié)構(gòu)與數(shù)據(jù)的常用sql命令創(chuàng)建數(shù)據(jù)庫create database if not exists 數(shù)據(jù)庫名 charset=指定編碼使用數(shù)據(jù)庫use 數(shù)據(jù)庫名創(chuàng)建表create tabl...
操作數(shù)據(jù)庫結(jié)構(gòu)與數(shù)據(jù)的常用sql命令
創(chuàng)建數(shù)據(jù)庫
create database if not exists 數(shù)據(jù)庫名 charset=指定編碼
使用數(shù)據(jù)庫
use 數(shù)據(jù)庫名
創(chuàng)建表
create table if not exists 表名(
字段名 類型名,
id int,
birth date
);
顯示
顯示表(創(chuàng)建表代碼)
show create table 表名字;
顯示表結(jié)構(gòu)
desc 表名;
顯示數(shù)據(jù)庫和表
show 數(shù)據(jù)庫名/表名
刪除
刪除數(shù)據(jù)庫與表
drop 數(shù)據(jù)庫名/表名
數(shù)據(jù)結(jié)構(gòu)的增刪改查(基本都是基于修改的關(guān)鍵字"alter")
添加列
alter table 表名 add(列名 列類型,列名 列類型);
alter table tab_day1 add(age int,zwjs text);
刪除列
alter table 表名 drop 列名;
alter table tab_day1 drop age;
(這里區(qū)別change與modify,change為改變的意思,程度自然比modify大)
修改列名
alter table tab_day1 change 舊列名 新列名 新列類型;
alter table tab_day1 change money salary decimal(10,2);
修改列類型
alter table tab_day1 modify 列名 列新類型;
alter table tab_day1 modify height int;
數(shù)據(jù)的增刪改查
查詢
select * from 表名
select 列名1,列名2,列名3 from 表名;
增加
insert into 表名 values(列值1,列值2,列值3);
insert into tab_day1 values (1,'韓梅梅','女');
修改
update 表名 set 列名=列值,列名=列值; (更改多列)
update tab_day1 set sex='男',salary=1000;
update 表名 set 列名=列值 where 條件
update tab_day1 set salary=2000 where id=1 or id=3;
刪除
DELETE FROM tab_day1 WHERE id=1;
DELETE FROM tab_day1;/*刪除所有行*/
以上就是數(shù)據(jù)庫操作中常用的sql命令的詳細(xì)內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!
學(xué)習(xí)教程快速掌握從入門到精通的SQL知識。