Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

how to remove rows

Hi all i have a field name product

data like

-

baby

200

350

-

-

-

how to remove empty rows

2 Replies
sunny_talwar

May be use Where function

LOAD ...

FROM ..

Where Len(Trim(product)) > 0;

balabhaskarqlik

Product:

Load

ProductID,

Len(Trim(Product)) > 0 as Product,

ProductGroup

from Product

group by ProductID;

Or

Product:

Load

Product,

ProductGroup

From Product where Len(Trim(Product)) > 0;