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 JDBC syntax for using a literal or variable in a standard Statement?
what is the best way, in terms of performance, to do multiple insert/update statements, a PreparedStatement or Batch Updates?
what happen if we set JDBC string to NULL?
What do you understand by DDL and DML statements?
How do I find ojdbc jar version?
What do you understand by jdbc datasource?
How can you use preparedstatement in jdbc?
How many ways can you update a result set?
What is a lock in jdbc?
What is the difference between executing, executequery, executeupdate in jdbc?
why are using type4 driver in realtime projects?
How do you create Connection?