MySQL【五】內置方法

MySQL內置方法

 

distinct(去重)

select distinct 字段 from 表名
select distinct age from employee;

四則運算

對篩選的結果進行四則運算
select 字段*12 from 表
select salary*12 from employee

重命名

在顯示查詢結果的時候臨時重命名
select 字段 as 新名字 from 表
select salary as sum_salary from employee;

concat函數

concat('你想拼接的內容',字段名,'你想拼的其餘內容','字段名')
    select concat('姓名:',emp_name,'    ','薪資:',salary) from employee;
concat_ws('鏈接符號',字段1,字段2,....)
    select concat_ws(':',emp_name,salary) from employee;

case語句

複製代碼
select
    (case
    when emp_name = 'jingliyang' then # 若是名字是jingliyang就顯示jingliyang
        emp_name
    when emp_name = 'alex' then     # 若是名字是alex就顯示alex_bigsb
        concat(emp_name,'_bigsb')   # 將名字和'_bigsb'拼接
    else
        concat(emp_name,'_sb')      # 不然顯示名字拼接_sb
    end) as new_name                # 將結果重命名爲new_name
from employee;
相關文章
相關標籤/搜索