溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

MySQL基礎(chǔ)語句

發(fā)布時(shí)間:2020-09-23 00:08:13 來源:網(wǎng)絡(luò) 閱讀:162 作者:spark_Gg 欄目:MySQL數(shù)據(jù)庫
這里不介紹MySQL 函數(shù)及其他知識(shí),只做基本的語法介紹說明。
    show databases;    顯示數(shù)據(jù)庫
    create database name; 創(chuàng)建數(shù)據(jù)庫
    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ù)庫
    drop database name 直接刪除數(shù)據(jù)庫,不提醒
    mysqladmin drop databasename 刪除數(shù)據(jù)庫前,有提示。
    select version(),now()   顯示當(dāng)前mysql版本和當(dāng)前日期
    create table table_name (字段1 數(shù)據(jù)類型 , 字段2 數(shù)據(jù)類型);   創(chuàng)建數(shù)據(jù)表的語法
    alter table t1 rename t2;   重命名表
    show tables; 顯示表
    show create table table_name;     查看建表語句
    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ú)使用

添加數(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具有相同的值
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI