MySQL基本操作(+參考手冊)

來源:互聯網
上載者:User

標籤:des   style   blog   http   color   資料   ar   div   

1、MySQL 5.1參考手冊 2、基礎教程

3、常用舉例入下:

 1 串連資料庫:mysql -h主機地址 -u使用者名稱-p使用者密碼 2 資料庫的提示符:mysql> 3 退出資料庫:exit(斷行符號) 4 顯示資料庫:show databases; 5 建立資料庫:create database 庫名; 6 選擇資料庫:use 資料庫名; 7 顯示資料庫中的表:show tables; 8 顯示資料表的結構:describe 表名; 9 建表:create table 表名 (欄位設定列表);      註:auto_increment 自增  primary key 主鍵10 顯示表中記錄:SELECT * FROM 表名;11 增加記錄: insert into name(uname,gender,birthday) values(‘張三‘,‘男‘,‘1971-10-01‘);12 修改記錄:update name set birthday=‘1971-01-10‘ where uname=‘張三‘;13 刪除記錄:delete from name where uname=‘張三‘;14 刪除表:drop table 表名;15 刪除庫:drop database 庫名;16 備份資料庫:mysqldump -u root -p --opt 資料庫名>備份名; //進入到庫目錄17 恢複資料庫:mysql -u root -p 資料庫名<備份名; //恢複時資料庫必須存在,可以為空白資料庫18 授權資料庫:格式:grant select on 資料庫.* to 使用者名稱@登入主機 identified by "密碼";

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.