主頁 > 知識庫 > MySQL查詢語句簡單操作示例

MySQL查詢語句簡單操作示例

熱門標(biāo)簽:走過哪個省地圖標(biāo)注 在哪里申請400電話 常州網(wǎng)絡(luò)外呼系統(tǒng)開發(fā) 外呼系統(tǒng)電銷受騙 安徽ai電話電銷機(jī)器人有效果嗎 巫師三血與酒地圖標(biāo)注 400電話申請信用卡 萊西市地圖標(biāo)注 銷售語音電話機(jī)器人

本文實(shí)例講述了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ù)庫計(jì)有所幫助。

您可能感興趣的文章:
  • 淺談pymysql查詢語句中帶有in時傳遞參數(shù)的問題
  • MySQL模糊查詢語句整理集合
  • MySQL查詢語句過程和EXPLAIN語句基本概念及其優(yōu)化
  • PHP使用mysqli同時執(zhí)行多條sql查詢語句的實(shí)例
  • mysql基礎(chǔ)架構(gòu)教程之查詢語句執(zhí)行的流程詳解
  • MySql帶OR關(guān)鍵字的多條件查詢語句
  • Mysql帶And關(guān)鍵字的多條件查詢語句
  • 詳解MySQL的limit用法和分頁查詢語句的性能分析
  • php mysqli查詢語句返回值類型實(shí)例分析
  • MySQL查詢語句大全集錦
  • 最全的mysql查詢語句整理
  • Oracle、MySQL和SqlServe三種數(shù)據(jù)庫分頁查詢語句的區(qū)別介紹
  • 詳解MySQL 查詢語句的執(zhí)行過程

標(biāo)簽:鞍山 河北 陽江 果洛 赤峰 黃石 來賓 煙臺

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《MySQL查詢語句簡單操作示例》,本文關(guān)鍵詞  MySQL,查詢,語句,簡單,操作,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《MySQL查詢語句簡單操作示例》相關(guān)的同類信息!
  • 本頁收集關(guān)于MySQL查詢語句簡單操作示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章