亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

MySQL查詢語句簡單操作示例

 更新時間:2019年11月21日 09:00:42   作者:小飛俠v科比  
這篇文章主要介紹了MySQL查詢語句簡單操作,結(jié)合實例形式分析了MySQL數(shù)據(jù)庫、數(shù)據(jù)表創(chuàng)建、數(shù)據(jù)插入、數(shù)據(jù)查詢等相關(guān)操作技巧,需要的朋友可以參考下

本文實例講述了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
);

準(zhǔn)備數(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ù)庫計有所幫助。

相關(guān)文章

最新評論