mysql 基本操作

來源:互聯網
上載者:User

在window下,啟動、停止mysql服務

啟動mysql資料庫
net start mysql

停止mysql資料庫
net stop mysql

重新啟動mysql資料庫
net restart mysql

命令列形式,mysql基本命令的使用

1、命令的取消
\c

2、退出mysql視窗
exit;或quit;或ctrl+c

3、查看資料庫版本號碼
select version();

4、顯示當前存在的資料庫
show databases;

5、選擇test資料庫
use test;

6、查看選擇的資料庫
select database();

7、設定資料庫中文編碼
set names utf8;

8、建立一個test資料庫
create database test

9、建立一張mtest表
create table mtest(
id tinyint(2) unsigned not null auto_increment,
name varchar(20),
sex char(1),
email varchar(50),
birth datetime,
primary key (id)
);

10、向mtest表中插入一條資料
insert into mtest(`name`,`sex`,`email`,`birth`) values ('zhangsan','1','zhangsan@163.com',now());

11、查詢mtest表中name為張三的資訊
select * from mtest where name='zhangsan';

12、按照id號降序輸出
select * from mtest order by id desc;

13、顯示第11至20條資料資訊
select * from mtest id limit 10,10;

相關文章

聯繫我們

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