getting some values from the table
what is wrong with this rs = statement.executeQuery("SELECT * MAX(COLUM) FROM Table");I am getting message Column Not Found
[164 byte] By [
qasims_1] at [2007-9-26 4:32:21]

The SQL syntax is incorrect. Use "SELECT COL1, COL2, MAX(COL3) FROM TABLE1 GROUP BY COL1, COL2".You must use group by when you have both set functions (MAX()) and column expression./Fredrik