This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes JDBC and the fly likes select statement for three column Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "select statement for three column" Watch "select statement for three column" New topic
Author

select statement for three column

sameera liyanage
Ranch Hand

Joined: Nov 25, 2008
Posts: 643
there are three colums in my database table.i need to write a select statement for related to all three columns.

boolean isPresent=statement.execute("SELECT PERSON FROM ID WHERE "
+ "ID=1"
+ "AND (Address=\'abc\'AND lastName=\'xxxx\')");

is this correct?
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32692
    
    4
Difficult to tell, because I don't know what your columns are. The SQL string looks like well-formed SQL, so you will have to try and see what happens when you execute that query at the command line? Have you read the API for java.sql.Statement#execute()?

Jeanne Boyarsky
internet detective
Marshal

Joined: May 26, 2003
Posts: 26192
    
  66

aruna sameera wrote:is this correct?

It's really close. If you look at the statement as one string you have:


Note the missing space before "and". This means your database can't parse the query.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: select statement for three column
 
Similar Threads
defference jdbcTemplate.queryForInt() and others
JDBC and Stored Procedure
Max length of select statement
iBatis and Parameter Map
Batching Select Statements in JDBC