條件表示式篩選:
簡單的條件運算子: > ,<, =, !=,<>,>=,<=
邏輯表示式篩選:
邏輯運算子
&&, || ,! ,
and, or ,not
模糊查詢:
like
between and
inis null
mysql中的+號只有乙個功能:運算子功能(一定是可以運算的才能是使用)
select
100+
12#都為整型可以進行運算
select
'123'+10
#試圖把'123'轉換成整型
select
'123'+10
#試圖把'jay'轉換成整型,若成功則繼續進行計算,不行的一方變為0;
select
'null'+10
#只要有null 則為null
取別名:
1.可以使用 as關鍵字
select
100as
"out_put"
2.空格隔開
select
100 out_put
拼接字串顯示
select concat(
'firstname'
,'lastname')as
"out_put"
from userinfo
#以/為分割符號
select concat(
'firstname'
,'/'
,'lastname')as
"out_put"
from userinfo
去重:
查詢員工部門 在員工資訊表內
select
distinct department from employee
著重標記
#標記為非關鍵字而是普通字串
select
`name`
from userinfo
在dbms中使用sql語句時先在頂部寫上
#使用的資料庫名
use userdb
查詢的列表可以是:
①表中的字段
②常量值
③表示式
④函式查詢的結果可以是乙個虛擬的**
尚矽谷 個人 資料庫記錄基礎5
判斷null值使用 is null 和 無法判斷null值 安全等於號 可讀性低,不建議使用 既可以判斷null值,又可以判斷普通型別 查詢員工號為100的員工的姓名和年薪 commition欄位有可能為null,當commition為null時返回0 select last name,salary...
個人的尚學堂資料庫oracle筆記(1)
1.查詢語句 select from emp select from dept select from salgrade select ename sal 12 from emp 年薪 select 2 3 from emp 計算表示式 select ename sal 12 as anuual s...
domino 個人資料庫損壞修復過程
今天咱們就介紹一下,如何通過notes系統自帶的修復工具修復損壞的個人資料庫,那是什麼工具呢,那就是fixup.exe,這個程式是notes系統自帶的修復工具,類似於office自帶的patscan工具,pstscan用來修復.pst資料檔案的,廢話不多說了,操作具體見下.環境介紹 環境內部署了一台...