在sqlite3 where子句中使用列别名

在sqlite3 where子句中使用列别名,sqlite,alias,sql,Sqlite,Alias,Sql,我知道,在oracle/mysql/sqlserverselect语句中,您无法在where子句中引用列别名,因为它是在select之前执行的,但它在sqlite3中起作用: sqlite> create table t (c1 text, c2 text); sqlite> insert into t values ("a1", "a2"); sqlite> insert into t values ("b1", "b2"); sqlite> select c1, c2

我知道,在oracle/mysql/sqlserver
select
语句中,您无法在
where
子句中引用列别名,因为它是在
select
之前执行的,但它在sqlite3中起作用:

sqlite> create table t (c1 text, c2 text);
sqlite> insert into t values ("a1", "a2");
sqlite> insert into t values ("b1", "b2");
sqlite> select c1, c2 from t;
a1|a2
b1|b2
sqlite> select c1, c2 as alias_c2 from t where alias_c2='b2';
b1|b2
为什么这在sqlite中是可能的?

那么,从文档中

标准SQL不允许在WHERE中引用列别名 条款施加此限制是因为当WHERE代码 执行时,可能尚未确定列值

但是当前的SQLite允许它

根据SQL标准,列别名可以按顺序、分组引用 并有条款。作为一个扩展,SQLite还允许它们在 和JOIN ON子句,但同样,这种用法是不标准的(尽管 有时非常方便)。无论是标准还是SQLite 实现允许在SELECT子句中引用别名


在启用了
SQLITE\u DEBUG
标志的情况下使用sqlite3:

sqlite> create table x (x1 integer);
sqlite> insert into x values (1);
sqlite> insert into x values (2);
sqlite> insert into x values (3);
sqlite> insert into x values (4);
sqlite> insert into x values (5);
sqlite> pragma vdbe_listing=1;
VDBE Program Listing:
   0 Expire           0    0    0      00 
   1 Halt             0    0    0      00 
sqlite> select x1*x1 as s from x where s>-10 and s>-9 and s>0 and s>-4 and s>2;
VDBE Program Listing:
   0 Trace            0    0    0      00 
   1 Integer        -10    1    0      00 
   2 Integer         -9    2    0      00 
   3 Integer          0    3    0      00 
   4 Integer         -4    4    0      00 
   5 Integer          2    5    0      00 
   6 Goto             0   26    0      00 
   7 OpenRead         0    3    0 1    00 x
   8 Rewind           0   24    0      00 
   9 Column           0    0    7      00 x.x1
  10 Multiply         7    7    6      00 
  11 Le               1   23    6      6A 
  12 Multiply         7    7    6      00 
  13 Le               2   23    6      6A 
  14 Multiply         7    7    6      00 
  15 Le               3   23    6      6A 
  16 Multiply         7    7    6      00 
  17 Le               4   23    6      6A 
  18 Multiply         7    7    6      00 
  19 Le               5   23    6      6A 
  20 Column           0    0    6      00 x.x1
  21 Multiply         6    6    9      00 
  22 ResultRow        9    1    0      00 
  23 Next             0    9    0      01 
  24 Close            0    0    0      00 
  25 Halt             0    0    0      00 
  26 Transaction      0    0    0      00 
  27 VerifyCookie     0    4    0      00 
  28 TableLock        0    3    0 x    00 
  29 Goto             0    7    0      00 
s   
----
4   
9   
16  
25  
sqlite> 
从上面的指令堆栈可以看出,行上的循环(第8-23行)为表中的每一行重复
where
子句中的每个表达式的
Multiply
Le
命令


因此,为了回答我自己的问题,sqlite引擎能够使用列别名,方法是在执行
时,在
选择
中替换它们的定义,我认为这不准确,因为此功能不是作为外部扩展提供的。我认为这意味着标准的扩展,不是SQLite的扩展。