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 / monalisa dalbehera
select max(Order_Date) from Order_Name ;
| Is This Answer Correct ? | 13 Yes | 3 No |
Post New Answer View All Answers
Explain sql data types?
What are all the different normalization?
how to analyze tables with 'mysqlcheck'? : Sql dba
What are the types of join in sql?
What is the syntax to add a record to a table?
what is an execution plan? When would you use it? How would you view the execution plan? : Sql dba
Is inner join faster than left join?
what is a relationship and what are they? : Sql dba
What is the difference between sql and t sql?
What is a table in a database?
What is the need of a partition key?
What is sql not null constraint?
What is a subquery in sql?
What does count (*) mean in sql?
What is a record in pl/sql?