|
|
|
|
|
by sergeykish
2083 days ago
|
|
Unbiased samples should match typography QUEL: range of e is employee
retrieve into w (comp = e.salary / (e.age - 18))
where e.name = "Jones"
SQL: select
(E.Salary / (E.Age - 18)) as COMP
from EMPLOYEE as E
where E.Name = "Jones"
Now QUEL looks like modern language while SQL is jarred mess. |
|
> To store the results of the retrieve in a new table, specify `into tablename` [1].
matching SQL:
[1] http://docs.huihoo.com/ingres/9.3/QUELRef.pdf