| Author |
simple sql help. the select command.
|
bhavin ragha
Greenhorn
Joined: Mar 28, 2012
Posts: 17
|
|
I know this is simple sql. but i am trying to do a simple select command.
the command says
this works.
but my question is how do i put multiple values in. for example where cd_id = 'cd001', 'cd005', 'cd023'
|
 |
Santhosh ayiappan
Ranch Hand
Joined: Jan 30, 2007
Posts: 70
|
|
You can use the "like" in the where clause instead of "=".
|
 |
Martin Vajsar
Bartender
Joined: Aug 22, 2010
Posts: 2331
|
|
Hi Bhavin, and welcome to the Ranch!
In your case, you could probably use the IN operator. I'd suggest reading some SQL tutorial, it will come in handy.
If you plan to run this statement using JDBC, you should also read a thing or two about PreparedStatement.
|
 |
 |
|
|
subject: simple sql help. the select command.
|
|
|