這里不介紹MySQL 函數(shù)及其他知識(shí),只做基本的語(yǔ)法介紹說(shuō)明。
show databases; 顯示數(shù)據(jù)庫(kù)
create database name; 創(chuàng)建數(shù)據(jù)庫(kù)
create table user like user_info; 創(chuàng)建相同的表結(jié)構(gòu)
create table user as select * from user_info; 創(chuàng)建相同的表結(jié)構(gòu)并復(fù)制數(shù)據(jù)
use databasename; 選擇數(shù)據(jù)庫(kù)
drop database name 直接刪除數(shù)據(jù)庫(kù),不提醒
mysqladmin drop databasename 刪除數(shù)據(jù)庫(kù)前,有提示。
select version(),now() 顯示當(dāng)前mysql版本和當(dāng)前日期
create table table_name (字段1 數(shù)據(jù)類型 , 字段2 數(shù)據(jù)類型); 創(chuàng)建數(shù)據(jù)表的語(yǔ)法
alter table t1 rename t2; 重命名表
show tables; 顯示表
show create table table_name; 查看建表語(yǔ)句
alter table table_name engine=innodb; 修改存儲(chǔ)引擎
desc tablename; 顯示表結(jié)構(gòu)
alter table test add column t_name varchar(20) after t_id; 增加表字段;
alter table test drop ts_wave 刪除字段
alter table test modify id int unsigned; 修改表字段類型
alter table patient add index index_code (pt_code); 增加索引
create unique index on tablenme (pt_code); 創(chuàng)建索引
drop index pt_code on tablename; 刪除索引
alter table test change ts_name tb_name varchar(20); 修改表字段及類型
alter table table_name rename to new_table_name; 修改表名
truncate table table_name; 清空表數(shù)據(jù)
① 約束(主鍵Primary key、唯一性Unique、非空Not Null)
② 自動(dòng)增張 auto_increment
③外鍵Foreign key-----與reference table_name(col_name列名)配合使用,建表時(shí)單獨(dú)使用
專注于為中小企業(yè)提供成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)順慶免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了千余家企業(yè)的穩(wěn)健成長(zhǎng),幫助中小企業(yè)通過(guò)網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。
添加數(shù)據(jù): Insert into tablename (COLUMNS1 , COLUMNS2 , ….)] values (v1 , v2 , …..);
刪除數(shù)據(jù): delete from tablename where ...
修改數(shù)據(jù): update tablename set COLUMNS1=vs1 where ....
查詢數(shù)據(jù): select columns from tablename where ... group by ... order by ... desc/asc having ... limit ...
UPDATE t1 SET col1 = col1 + 1, col2 = col1; col1與col2具有相同的值
新聞標(biāo)題:MySQL基礎(chǔ)語(yǔ)句
網(wǎng)站路徑:http://www.rwnh.cn/article28/psjocp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供服務(wù)器托管、電子商務(wù)、虛擬主機(jī)、網(wǎng)站排名、微信公眾號(hào)、網(wǎng)頁(yè)設(shè)計(jì)公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)