精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

SQLite 表達式


表達式是一個或多個值、運算符和計算值的sql函數(shù)的組合。

sql 表達式與公式類似,都寫在查詢語言中。您還可以使用特定的數(shù)據(jù)集來查詢數(shù)據(jù)庫。

 

1. 語法

假設(shè) select 語句的基本語法如下:

select column1, column2, columnn 
from table_name 
where [condition | expression];

有不同類型的 sqlite 表達式,具體講解如下:

 

2. sqlite - 布爾表達式

sqlite 的布爾表達式在匹配單個值的基礎(chǔ)上獲取數(shù)據(jù)。語法如下:

select column1, column2, columnn 
from table_name 
where single value matching expression;

假設(shè) company 表有以下記錄:

id          name        age         address     salary
----------  ----------  ----------  ----------  ----------
1           paul        32          california  20000.0
2           allen       25          texas       15000.0
3           teddy       23          norway      20000.0
4           mark        25          rich-mond   65000.0
5           david       27          texas       85000.0
6           kim         22          south-hall  45000.0
7           james       24          houston     10000.0

下面的范例演示了 sqlite 布爾表達式的用法:

sqlite> select * from company where salary = 10000;
id          name        age         address     salary
----------  ----------  ----------  ----------  ----------
4           james        24          houston   10000.0

 

3. sqlite 數(shù)值表達式

這些表達式用來執(zhí)行查詢中的任何數(shù)學運算。語法如下:

select numerical_expression as  operation_name
[from table_name where condition] ;

在這里,numerical_expression 用于數(shù)學表達式或任何公式。下面的范例演示了 sqlite 數(shù)值表達式的用法:

sqlite> select (15 + 6) as addition
addition = 21

有幾個內(nèi)置的函數(shù),比如 avg()、sum()、count(),等等,執(zhí)行被稱為對一個表或一個特定的表列的匯總數(shù)據(jù)計算。

sqlite> select count(*) as "records" from company; 
records = 7

 

4. sqlite 日期表達式

日期表達式返回當前系統(tǒng)日期和時間值,這些表達式將被用于各種數(shù)據(jù)操作。

sqlite>  select current_timestamp;
current_timestamp = 2013-03-17 10:43:35

下一節(jié):sqlite where 子句

sqlite教程

相關(guān)文章