溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

MySQL查詢語句簡單操作示例

發(fā)布時間:2020-09-10 12:31:25 來源:腳本之家 閱讀:131 作者:小飛俠v科比 欄目:MySQL數(shù)據(jù)庫

本文實例講述了MySQL查詢語句簡單操作。分享給大家供大家參考,具體如下:

查詢

創(chuàng)建數(shù)據(jù)庫、數(shù)據(jù)表

-- 創(chuàng)建數(shù)據(jù)庫
create database python_test_1 charset=utf8;
-- 使用數(shù)據(jù)庫
use python_test_1;
-- students表
create table students(
  id int unsigned primary key auto_increment not null,
  name varchar(20) default '',
  age tinyint unsigned default 0,
  height decimal(5,2),
  gender enum('男','女','中性','保密') default '保密',
  cls_id int unsigned default 0,
  is_delete bit default 0
);
-- classes表
create table classes (
  id int unsigned auto_increment primary key not null,
  name varchar(30) not null
);

準備數(shù)據(jù)

-- 向students表中插入數(shù)據(jù)
insert into students values
(0,'小明',18,180.00,2,1,0),
(0,'小月月',18,180.00,2,2,1),
(0,'彭于晏',29,185.00,1,1,0),
(0,'劉德華',59,175.00,1,2,1),
(0,'黃蓉',38,160.00,2,1,0),
(0,'鳳姐',28,150.00,4,2,1),
(0,'王祖賢',18,172.00,2,1,1),
(0,'周杰倫',36,NULL,1,1,0),
(0,'程坤',27,181.00,1,2,0),
(0,'劉亦菲',25,166.00,2,2,0),
(0,'金星',33,162.00,3,3,1),
(0,'靜香',12,180.00,2,4,0),
(0,'郭靖',12,170.00,1,4,0),
(0,'周杰',34,176.00,2,5,0);

-- 向classes表中插入數(shù)據(jù)
insert into classes values (0, "python_01期"), (0, "python_02期");

查詢所有字段

select * from 表名;

例:

select * from students;

查詢指定字段

select 列1,列2,... from 表名;

例:

select name from students;

使用 as 給字段起別名

select id as 序號, name as 名字, gender as 性別 from students;

可以通過 as 給表起別名

-- 如果是單表查詢 可以省略表明
select id, name, gender from students;
-- 表名.字段名
select students.id,students.name,students.gender from students;
-- 可以通過 as 給表起別名 
select s.id,s.name,s.gender from students as s;

消除重復(fù)行

在select后面列前使用distinct可以消除重復(fù)的行

select distinct 列1,... from 表名;

例:

select distinct gender from students;

更多關(guān)于MySQL相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《MySQL查詢技巧大全》、《MySQL常用函數(shù)大匯總》、《MySQL日志操作技巧大全》、《MySQL事務(wù)操作技巧匯總》、《MySQL存儲過程技巧大全》及《MySQL數(shù)據(jù)庫鎖相關(guān)技巧匯總》

希望本文所述對大家MySQL數(shù)據(jù)庫計有所幫助。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI