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?
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?
Copyright © 2021 Jogjafile Inc.