Hacker News new | ask | show | jobs
by sergeykish 2075 days ago
Also `into w` is

> To store the results of the retrieve in a new table, specify `into tablename` [1].

matching SQL:

    create table w as
    select (e.salary / (e.age - 18)) as comp
    from employee as e
    where e.name = "jones"
[1] http://docs.huihoo.com/ingres/9.3/QUELRef.pdf