Ubuntu MySQL常用命令

來源:互聯網
上載者:User

好久沒有做過資料庫相關的東西了,常用的SQL語句竟然都快記不得了,杯具 !今天一天都在國圖看MySQL相關的東東,現在簡單整理一下。(作業系統:Ubuntu)
1.終端啟動MySQL:/etc/init.d/mysql start;
2.登入MySQL:mysql -uroot -p (用root賬戶登入),然後輸入密碼;
3.查看所有的資料庫名字:show databases;
4.選擇一個資料庫操作: use database_name;
5.查看當前資料庫下所有的表名:show tables;
6.建立一個資料庫:create database database_name;
7.刪除一個資料庫:drop database database_name;
8.建立一個表: create table mytest( uid bigint(20) not null, uname varchar(20) not null);
9.刪除一個表: drop table mytest;
10.SQL插入語句:insert into table_name(col1,col2) values(value1,value2);
11.SQL更新語句:update table_name set col1='value1',col2='value2' where where_definition;
12.SQL查詢語句:select * from table_name where.......(最複雜的語句)
13.SQL刪除語句:delete from table_name where...
14.增加表結構的欄位:alert table table_name add column field1 date ,add column field2 time...
15.刪除表結構的欄位:alert table table_name drop field1;
16.查看錶的結構:show columns from table_name;
17.limit 的使用:select * from table_name limit 3;//每頁只顯示3行
select * from table_name limit 3,4 //從查詢結果的第三個開始,顯示四項結果。
此處可很好的用來作分頁處理。
18.對查詢結果進行排序: select * from table_name order by field1,orderby field2;多重排序
19.退出MySQL:exit;

相關文章

聯繫我們

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