mysql常用命令

來源:互聯網
上載者:User

標籤:資料庫操作   create   databases   insert   tables   

1.終端啟動MySQL:mysql -uroot -pxxxx
2.查看所有的資料庫名字:show databases;
3.選擇一個資料庫操作: use database_name;
4.查看當前資料庫下所有的表名:show tables;
5.建立一個資料庫:create database database_name;
6.刪除一個資料庫:drop database database_name;
7.建立一個表: create table mytest( uid bigint(20) not null, uname varchar(20) not null);
8.刪除一個表: drop table mytest;
9.SQL插入語句:insert into table_name(col1,col2) values(value1,value2);
10.SQL更新語句:update table_name set col1=‘value1‘,col2=‘value2‘ where where_definition;
11.SQL查詢語句:select * from table_name where....
12.SQL刪除語句:delete from table_name where...
13.增加表結構的欄位:alert table table_name add column field1 date ,add column field2 time...
14.刪除表結構的欄位:alert table table_name drop field1;
15.查看錶的結構:show columns from table_name;
16.limit 的使用:select * from table_name limit 3;//每頁只顯示3行
select * from table_name limit 3,4 //從查詢結果的第三個開始,顯示四項結果。
此處可很好的用來作分頁處理。
17.對查詢結果進行排序: select * from table_name order by field1,orderby field2;多重排序
18.退出MySQL:exit;

mysql常用命令

相關文章

聯繫我們

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