dql(data query language)(查詢語言)
#高階1:基礎查詢
語法:select 查詢列表 from 表名;
特點:1、查詢列表可以是:表中的字段、常量值、表示式、函式
2、查詢的結果是乙個虛擬的**
#高階1:基礎查詢
/*語法:
select 查詢列表 from 表名;
特點:1、查詢列表可以是:表中的字段、常量值、表示式、函式
2、查詢的結果是乙個虛擬的**
*/#開啟某個**
use myemployees;
#1.查詢表中的單個字段
select last_name from employees;
#2.查詢表中多個字段
select last_name,salary,email from employees;
#3.查詢表中所有字段
#方式一
select
`employee_id`
,`first_name`
,`last_name`
,`email`
,`phone_number`
,`job_id`
,`salary`
,`commission_pct`
,`manager_id`
,`department_id`
,`hiredate`
from
employees ;
#方式二:
select
*from employees;
注意事項:
著重號的原因是為了區分關鍵字;
select
`name`
from stuinfo;
DQL語言的學習(一)
一 基礎查詢 特點 1 查詢的可以是 表中的字段 常量值 表示式 函式 2 查詢的結果是個虛擬的 1.查詢單個字段 select last name from table name 2.查詢多個字段 select last name,job id from table name 3.查詢所有字段 s...
MySql中的DQL語言
一 基礎查詢 關鍵字select select 查詢字段 from 表名 查詢常量值 表示式 函式 起別名 a select表示式as 別名 b select 字段 別名 from b表名 c 別名如果有特殊字元 建議加雙引號 去重 在查詢欄位前加上關鍵字 distinct 號的作用 只有乙個功能 ...
MySQL的DQL語言 查
dql data query language,資料查詢語言。dql是資料庫中最核心的語言,簡單查詢,複雜查詢,都可以做,用select語句。查詢指定表的全部欄位和數值,格式 select from 表的名字 select from student 效果 student表的所有行和列都能查到 查詢指...