select
使用select语句访问表中数据。select语句总是返回一个表。
用法
该语句中 constantNum 是一个常量标量,colName 为别名。若不指定 colName 将以常量值作为列名。
用法 1:读取表中的列数据。
select column1, column2, ... from t
select * from t //选取所有列
column1, column2, ... 为表 t 中的列字段名称。
用法 2:生成新列。
select expression [as colName] from t
expression 可以是包含表 t 中列字段的计算表达式,也可以是一个常量。若不指定 colName,当 expression 是表达式时,将表达式和其作用的列名组合生成新列名;当 expression 是常量时,将使用常量值作为新列名。
注意:当只 select 一个常量时,返回一个单行单列的表。
用法3:生成一个新列,其元素全为 NULL。
select NULL [as colName] from t
通过用法3生成的新列的类型为 VOID(无类型),不支持对该列进行计算操作,亦不支持追加、插入数据到 VOID 类型列和修改 VOID 类型列。其主要作用是占位。将包含空值列的表追加到其它表中(使用 append!, insert into, tableInsert 方法),则空值列的类型会自动转换为被追加列的类型,以方便后续操作。
注意:当只 select 一个 NULL 时,返回一个单行单列的空表。
以上3种用法可以结合使用,比如 select *, expression as newCol1, NULL as newCol2 from
t
。
在 SQL 查询中,select 查询返回的结果,若为:
-
单列表:将作为向量,可以与 in 关键字结合使用;
-
单行单列的表:将作为标量,可以和操作符,如:gt、ge、lt、le、eq、ne 等结合使用;
例子
创建表t1,含有列timestamp, qty, price和sym.
sym = `C`MS`MS`MS`IBM`IBM`C`C`C$SYMBOL
price= 49.6 29.46 29.52 30.02 174.97 175.23 50.76 50.32 51.29
qty = 2200 1900 2100 3200 6800 5400 1300 2500 8800
timestamp = [09:34:07,09:36:42,09:36:51,09:36:59,09:32:47,09:35:26,09:34:16,09:34:26,09:38:12]
t1 = table(timestamp, sym, qty, price);
t1;
timestamp | sym | qty | price |
---|---|---|---|
09:34:07 | C | 2200 | 49.6 |
09:36:42 | MS | 1900 | 29.46 |
09:36:51 | MS | 2100 | 29.52 |
09:36:59 | MS | 3200 | 30.02 |
09:32:47 | IBM | 6800 | 174.97 |
09:35:26 | IBM | 5400 | 175.23 |
09:34:16 | C | 1300 | 50.76 |
09:34:26 | C | 2500 | 50.32 |
09:38:12 | C | 8800 | 51.29 |
select * from t1;
timestamp | sym | qty | price |
---|---|---|---|
09:34:07 | C | 2200 | 49.6 |
09:36:42 | MS | 1900 | 29.46 |
09:36:51 | MS | 2100 | 29.52 |
09:36:59 | MS | 3200 | 30.02 |
09:32:47 | IBM | 6800 | 174.97 |
09:35:26 | IBM | 5400 | 175.23 |
09:34:16 | C | 1300 | 50.76 |
09:34:26 | C | 2500 | 50.32 |
09:38:12 | C | 8800 | 51.29 |
select语句中被选中的对象不仅限于表中的列,可以是变量或函数。系统会检查选中的列是否是表中的列,如果是,那么这个列将会被当作表列处理;否则将会被当作变量列或者函数处理。
recordNum=1..9;
select 1..9 as recordNum, sym from t1;
recordNum | sym |
---|---|
1 | C |
2 | MS |
3 | MS |
4 | MS |
5 | IBM |
6 | IBM |
7 | C |
8 | C |
9 | C |
// 使用一个标量值来表示含有相同值的列
select 3 as portfolio, sym from t1;
portfolio | sym |
---|---|
3 | C |
3 | MS |
3 | MS |
3 | MS |
3 | IBM |
3 | IBM |
3 | C |
3 | C |
3 | C |
在select语句中使用函数。
def f(a):a+100;
select f(qty) as newQty, sym from t1;
newQty | sym |
---|---|
2300 | C |
2000 | MS |
2200 | MS |
3300 | MS |
6900 | IBM |
5500 | IBM |
1400 | C |
2600 | C |
8900 | C |
select last price from t1 group by sym;
sym | last_price |
---|---|
C | 51.29 |
MS | 30.02 |
IBM | 175.23 |
生成一列常量列:
t = table(1..5 as id, `a`a`a`b`b as val);
select *, 1 as cst from t
id | val | cst |
---|---|---|
1 | a | 1 |
2 | a | 1 |
3 | a | 1 |
4 | b | 1 |
5 | b | 1 |
select *, 1 from t
id | val | 1 |
---|---|---|
1 | a | 1 |
2 | a | 1 |
3 | a | 1 |
4 | b | 1 |
5 | b | 1 |
单列的查询结果和 in 关键字结合使用:
t = table(`APPL`IBM`AMZN`IBM`APPL`AMZN as sym, 10.1 11.2 11.3 12 10.6 10.8 as val)
t;
sym | val |
---|---|
APPL | 10.1 |
IBM | 11.2 |
AMZN | 11.3 |
IBM | 12 |
APPL | 10.6 |
AMZN | 10.8 |
stk = table(1 2 3 as id, `AAPL`IBM`FB as stock);
select count(*) from t where sym in select stock from stk;
2
下例生成一个包含空值列的表,且将该表追加到 t2 中
t1 = table(rand(10,3) as x)
tmp=select *, NULL from t1
typestr(tmp[`NULL])
VOID VECTOR
将表 tmp 追加到 t2 中
t2 = table(1..6 as x1, 1..6 as y1)
t2.append!(tmp)
t2
x1 | y1 |
---|---|
1 | 1 |
2 | 2 |
3 | 3 |
3 | |
4 | |
6 |