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 the maximum number of columns in sql table?
Why we use stored procedure instead of query?
Can we call dml statement in function?
What is the difference between in and between in sql?
Explain the uses of database trigger.
What are types of exception?
Is merge a dml statement?
Which software is used for pl sql programming?
What is the difference between view and stored procedure?
How do I write a cron which will run a sql query and mail the results to agroup?
What are the most important ddl statements in sql?
Which certification is best for sql?
What is triggering circuit?
how can we know the count/number of elements of an array? : Sql dba
Is trigger a stored procedure?