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

Loading Specfic Data

Hey,

I know this will appear so basic but if I only want to load specific data what is the proper way to write the statement?

I want to load all the data for "produce" which is in the "department" field how do I write that?

thanks!

2 Replies
arulsettu
Master III
Master III

load

a,

b,

c

from table name where department = 'produce'

sushil353
Master II
Master II

Try:

Load * from tableName where department = 'produce';