SQL語句 操作集合

2021-05-25 03:17:07 字數 321 閱讀 1422

//保留小數字數

select cast(列名as 數值型別,如decimal,numeric等 (長度,小數點後位數)) 列名 from 表名

例:select cast(sid as decimal(18,2)) sid from user

//case 用法

單條件:select case ***xx when null then '0' else '1' end from ***x

多條件:  select case ***x when '' then '0' when null then '0' else ***x end from ***x

SQL語句集合

記錄下平時寫的稍微複雜點的sql 說明 a b是一對多關係 乙個a有多個b 查詢a中已有b的且狀態不是11020403的a資料 select from a where id not in select id from b where cp status 11020403 group by id an...

sql語句集合

新增注釋 給資料庫表新增注釋 comment on table 表名 is 注釋 給表字段新增注釋 comment on column 表名.欄位名 is 注釋 修改表結構 增加字段 alter table 使用者名稱 如果需要 表名 add 欄位名 資料型別 修改字段型別 alter table ...

SQL 語句集合

where 子句 操作符 描述 等於 不等於 where 子句 大於 小於 大於等於 小於等於 between 在某個範圍內 like 搜尋某種模式 備註 在某些版本的 sql 中,操作符 可以寫為 sql 使用單引號來環繞文字值 大部分資料庫系統也接受雙引號 如果是數值,請不要使用引號。例如 如果...