基本函式用法
1、top: select top number/percent 列名 from 表名
2、in:select * from 表名 where 列名 in ('值1','值2');
有時值為漢字時因編碼方式不同資料庫會檢查不到結果,此時可在值前加n即為:('n值1','n值2');
3、between:select * from 表名 where 列名 between '值1' and '值2';
4、like 模糊查詢:select * from 表名 where 列名 like '...';
select * from 表名 where 列名 not like '...';
...萬用字元的使用:(1)%:代替乙個或多個字元
(2)_:僅代替乙個字元
(3)[ ]:字元列中任意字元
(4)[^]或[!]:不在字元列中任意字元
escape:使用 escape關鍵字定義轉義符。
在模式中,當轉義符置於萬用字元之前時,該萬用字元就解釋為普通字元。
例如,要搜尋在任意位置包含字串 5% 的字串,請使用:
like '%5/%%' escape '/' ;
MySQL 二 (資料庫操作)
show databases use 資料庫名 select database create database 資料庫名 charset utf8 例 create database python charset utf8 drop database 資料庫名 例 drop database pyt...
SQL Server資料庫操作(二)
一 新增約束的語法 alter table 表名 add constraint 約束名 約束型別 具體的約束說明 use studentmanagedb go 新增約束,建立主鍵約束 ifexists select from sysobjects where name pk studentid al...
資料庫操作(二)SOQL
1 soql soql是物件查詢語言。它可以在單個sobject中在給定標準上搜尋記錄。2 select語句 格式 select 列名稱 from 表名稱 示例 3 select.where語句 格式 select 列名稱 from 表名稱 where 篩選條件 示例 4 order by語句 格式...