mysql sample sqls

來源:互聯網
上載者:User

1) show databases;

2) use db; 進入到資料庫db

3) select database(); --顯示當前資料庫

4) select "consstr" as colname, t.* from tableName t;

5) select a.id,a.valueA, case (b.valueB is NULL) when 1 then 'z' else b.valueB end from tableA as a left join tableB as b on(id);

6)匯入.sql指令碼:

  在命令列下:mysql -h *** -u *** -p <***.sql

      進入到mysql,在mysql>命令列下: source  **.sql

7)在mysql中可以讓查詢結果的每行豎排列,只需要用\G代替查詢語句末尾的分號即可。如:

  select * from test limit 10 \G

8)show tables like '%name%';

9) 查看建表語句:show create table  tablename ;

10) 刪除主鍵: alter table tablename drop primary key;

11) 匯出資料:

  select * from table into outfile 'fileName' ; --只能在本機匯出。

  mysqldump -h host -u user -ppwd database table > file

12) 匯入資料:

  load data infile 'filepath' into table tableName;

  mysqldump ...

相關文章

聯繫我們

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