select 查詢列表
from 表名 from 表名;
特點1.查詢列表可以是:表中字段,常量值,表示式,函式
2.查詢結構是虛擬**
use myemployees;
#1.查詢單個字段
select last_name from employees;
#2.查詢多個字段
select last_name,salary,email from employees;
#3.查詢全部
select `first_name`,`last_name`,`email`,`commission_pct`
from employees;
select * from employees;
select 'name' from employees;
#4 查詢常量值
select 100;
select 'john';
#5 查詢表示式
select 100*98;
#6 查詢函式
select version();
#7 起別名
select 100&98 as 結果;
select last_name as 姓名,first_name as 名 from employees;
select last_name 姓名,first_name 名 from employees;
select salary as 'out put' from employees;
#8.去重
# 查詢所有員工的部門編號
select department_id from employees;
select distinct department_id from employees;
#9.+號的作用 運算子
/*select 100+90;190
select '123'+90; 213
select 'john'+90; 0+90
select null+100; null
*/
#10. 拼接 有null的情況
select concat('a','b','c') as 結果;
select concat(last_name,'_',first_name) as 姓名
from employees;
select concat(last_name,'_',first_name,'_',`job_id`) as 姓名
from employees;
select ifnull(commission_pct,0) as 獎金率,commission_pct
from employees;
select concat(last_name,'_',first_name,'_',`job_id`,'_',ifnull(commission_pct,0)) as out_put
from employees;
MySQL基礎學習(2)查詢
基礎查詢 語法 select 查詢列表 from 表名 特點 1 查詢列表可以是 表中的字段 常量值 表示式 函式 2 查詢結果是乙個虛擬的 1.查詢表中的單個字段 select last name from employees 2.查詢表中的多個字段 select last name,salary...
python學習打卡2
q a 1.起源與英國超現實主義喜劇團體 2.大約理解為相互交流。讀取指令並執行 3.是商數取整,是除法 4.10 3 10 3 1 模組名 小寫字母,單詞之間用 分割 如 logging 2 包名 小寫字母,單詞之間用 分割 如 logging 3 類名 單詞首字母大寫 如 python clas...
mysql打卡學習3條件查詢
語法 select 查詢列表 from 表名where 篩選條件 分類 一.按條件表示式篩選 二.邏輯表示式篩選 用於連線表示式 and or not 三.模糊查詢 like between and in is null is not null select from employees where...