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 / gurudath mallya
select * from Order_Name where Order_Date=max(Order_Date);
| Is This Answer Correct ? | 8 Yes | 9 No |
Post New Answer View All Answers
What is difference between sql function and stored procedure?
What does data normalization mean?
What is cross join example?
How do you optimize a stored procedure in sql?
what is oracle database ? : Sql dba
What are the advantages of pl sql?
What is a full join sql?
How delete all data from table in sql?
What is sql rowcount?
What is the most restrictive isolation level? : Transact sql
Does sql require a server?
What is the advantage of nosql?
Can we insert delete data in view?
Is not equal in sql?
When can we use the where clause and the having clause?