mysql之select語法常用查詢舉例

2021-08-22 12:00:40 字數 1152 閱讀 2073

1.去重查詢

select distinct id,age from table_name;

2.指定列查詢

select id,name from table_name;

3.語句運算

select id,name,(english+math+chinese) from table_name;

4.起別名

select id,name,(english+math+chinese) as '語數外總成績' from table_name;

5.模糊查詢(查詢所有姓李的語數外總成績)

select id,name,(english+math+chinese) as '語數外總成績' from table_name   where name like '李%';   將所有姓李的語數外總成績提公升60%

select id,name,(english+math+chinese)*1.6 as '語數外總成績' from   table_name where name like '李%';

6.where查詢過濾

between ... and ...

#從...到...

in ()

#顯示在in列的值,例如:in(100.200)

like ''  

#模糊查詢

not like『』

#模糊查詢

is null

#判斷是否為空

and#多個條件同時成立

or#多個條件單一成立

7.order by排序語句

位於select語句句尾,asc公升序,desc降序

預設公升序

select age from table_name order by age;

降序select age from table_name order by age desc;

8.常用函式

count() #統計

count(*)統計null值,count(列名)排除null值

select count (*) from table_name;

select count (name) from table_name;

sum()     #求和

select sum(math) from table_name;

SQl語法之select查詢

語法1 基礎查詢 語法 select 要查詢的東西 from 表名 特點 通過select查詢完的結果 是乙個虛擬的 不是真實存在 要查詢的東西 可以是常量值 可以是表示式 可以是字段 可以是函式 語法2 條件查詢 條件查詢 根據條件過濾原始表的資料,查詢到想要的資料 語法 select 要查詢的字...

mysql表的語法技巧 MySql表操作常用語法

檢查表 check table table name 修復表repair table table name 優化表optimize table table name 分析表analyze table table name 清空表truncate table name 刪除表drop table na...

JQuery獲取和設定Select選項常用方法總結

1.獲取select 選中的 text cuschildtypeid find option selected text cuschildtypeid option selected text 2.獲取select選中的 value ddlregtype val 3.獲取select選中的索引 dd...