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 / pritesh
select * from order_name where order_date=(select max
(order_date) from order_name)
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is minus?
How can we implement rollback or commit statement in a trigger?
What are functions in sql?
What is cursor and why it is required?
What is a unique key and primary key and foreign key?
What is left join in postgresql?
How to set up sql*plus output format in oracle?
How to generate a salary slip like jan 1000 1000 feb 1000 2000 ... dec 1000 12000
What is the use of stored procedures?
What are the different types of triggers?
Can we use insert statement in function?
Do stored procedures prevent sql injection?
Differentiate between pl/sql and sql?
Is pl sql different from sql?
Why do we use joins in sql?