How can you sort dates?
Answer / pg
select <date column> from <table name> order by <date
column>
if needed in descending order
select <date column> from <table name> order by <date
column> desc
| Is This Answer Correct ? | 2 Yes | 0 No |
what is the best way, in terms of performance, to do multiple insert/update statements, a PreparedStatement or Batch Updates?
What is sqlwarning and discuss the procedure of retrieving warnings?
What are the exceptions in jdbc?
What are the benefits of PreparedStatement over Statement?
What is the purpose of jdbc resultset interface?
What are four types of JDBC driver?
What are the packages are used in jdbc?
Is java a database?
What is jdbc resultsetmetadata interface?
What are the Isolation level in JDBC transaction?
How can I create a custom RowSetMetaData object from scratch?
Write an sql to find all records having all upper case alphanumeric characters in a field ?