Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to use the quantity column from my excel table in the sql where clause !
this is the code that i tried but it didn't work :
LOAD product,Quantity
FROM
[MyFile]
(ooxml, embedded labels, table is Sheet) ;
right join
SQL
select product
from `DB`.`table` where
(Quantity - count(product)) <=0 group by product ;
Thanks for any help and attention !
Hi @emyemyemy
One of the way to achieve based on ApplyMap concept like below.
MapQuantity:
Mapping Load product,Quantity
FROM
[MyFile]
(ooxml, embedded labels, table is Sheet) ;
Load *, where ApplyMap('MapQuantity', product, 0) - ProdCount <= 0;
select product, count(product) as ProdCount
from `DB`.`table` group by product ;
Hope it helps
Hi @emyemyemy
One of the way to achieve based on ApplyMap concept like below.
MapQuantity:
Mapping Load product,Quantity
FROM
[MyFile]
(ooxml, embedded labels, table is Sheet) ;
Load *, where ApplyMap('MapQuantity', product, 0) - ProdCount <= 0;
select product, count(product) as ProdCount
from `DB`.`table` group by product ;
Hope it helps
You made my day , I have never woked with mapping , I will learn about it more !
Thank you for help !
Hi mayilvahanan !
Can you check my problem here I will be greatful !