MySQL對錶操作命令

來源:互聯網
上載者:User

1 . 資料庫建立 : Create database db_name;

資料庫刪除 : Drop database db_name; 刪除時可先判斷是否存在,寫成 : drop database if exits db_name

      

2 . 建表 : 建立資料表的文法 : create table table_name (欄位1 資料類型 , 欄位2 資料類型);

                       例 : create table mytable (id int , username char(20));

          刪表 : drop table table_name; 例 : drop table mytable;

       8 . 添加資料 : Insert into 表名 [(欄位1 , 欄位2 , ….)] values (值1 , 值2 , …..);

如果向表中的每個欄位都插入一個值,那麼前面 [ ] 括弧內欄位名可寫也可不寫

               例 : insert into mytable (id,username) values (1,’zhangsan’);

       9 . 查詢 : 查詢所有資料 : select * from table_name;

查詢指定欄位的資料 : select 欄位1 , 欄位2 from table_name;

例 : select id,username from mytable where id=1 order by desc;

多表查詢語句------------參照第17條執行個體   
       10 . 更新指定資料 , 更新某一個欄位的資料(注意,不是更新欄位的名字)

Update table_name set 欄位名=’新值’ [, 欄位2 =’新值’ , …..][where id=id_num] [order by 欄位 順序]

例 : update mytable set username=’lisi’ where id=1;

Order語句是查詢的順序 , 如 : order by id desc(或asc) , 順序有兩種 : desc倒序(100—1,即從最新數

據往後查詢),asc(從1-100)

                     Where和order語句也可用於查詢select 與刪除delete

11 . 刪除表中的資訊 :

              刪除整個表中的資訊 : delete from table_name;

              刪作表中指定條件的語句 : delete from table_name where 條件陳述式 ; 條件陳述式如 : id=3;

      

       12 . 建立資料庫使用者

              CREATE USER username1 identified BY ‘password’ , username2 IDENTIFIED BY ‘password’….

                     一次可以建立多個資料庫使用者

       13 . 使用者的許可權控制:grant

              庫,表級的許可權控制 : 將某個庫中的某個表的控制權賦予某個使用者

                     Grant all ON db_name.table_name TO user_name [ indentified by ‘password’ ];

        14 . 表結構的修改
              ① 增加一個欄位格式:

alter table table_name add column (欄位名 欄位類型); ----此方法帶括弧

                     指定欄位插入的位置:

alter table table_name add column 欄位名 欄位類型 after 某欄位;

②       刪除一個欄位:

alter table table_name drop欄位名;

             

③ 修改欄位名稱/類型

alter table table_name change 舊欄位名 新欄位名 新欄位的類型;

              ④ 改表的名字

alter table table_name rename to new_table_name;

              ⑤ 一次性清空表中的所有資料

truncate table table_name; 此方法也會使表中的取號器(ID)從1開始

                    

15 . 增加主鍵,外鍵,約束,索引。。。。(使用方法見17執行個體)
① 約束(主鍵Primary key、唯一性Unique、非空Not Null)

② 自動增張 auto_increment

③外鍵Foreign key-----與reference table_name(col_name列名)配合使用,建表時單獨使用

④ 刪除多個表中有關聯的資料----設定foreign key 為set null ---具體設定參考說明文檔

      

       16 . 查看資料庫當前引擎

                     SHOW CREATE TABLE table_name;

              修改資料庫引擎

                     ALTER TABLE table_name ENGINE=MyISAM | InnoDB;

 

17.

show tables;
select * from A;
ALTER table A change oldFiled newFiled varchar(256);

ALTER TABLE c_user add filed varchar(256);

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.