Table Order_Name has a column Order_Date which gives the
date & Time at which the order is passed.Find the table to
write a query to find out the latest order.
Answer Posted / akki julak
SELECT ORDER_DATE FROM ORDER_NAME
WHERE ROWID=(SELECT MAX(ROWID) FROM ORDER_NAME);
| Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers
How subquery works in sql?
What is the trigger in sql?
What is prepared statement in sql?
Is nosql relational?
explain about mysql and its features. : Sql dba
Explain the difference between 'between' & 'and' operators in sql
What is difference between table and view?
How do you optimize a query?
Which normal form is best?
How does index help in query performance?
What is serial sql?
How to avoid using cursors?
Which certification is best for sql?
What is spool?
Is sql a backend?