Netsuite query with WITH clause

236 Views Asked by At

Any clue why the following works?

with tbl as (select itemprice.item as stock
             from itemprice)
select stock
from tbl

and

with tbl as (select item.id as stock
             from item)
select stock
from tbl

does not?

0

There are 0 best solutions below