wirte a query to filter improper date format follwing table?
date
20-apr
22-may-2010
26-jun-2010
feb-2009
i want the output
date
22-may-2010
26-jun-2010
Answer Posted / kumar
select * from employees
where
length(hire_date)=length(sysdate)
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
List the various privileges that a user can grant to another user?
Is microsoft sql free?
How many tables can you join in sql?
Which sql statement is used to return only different values?
what is view? : Sql dba
explain the difference between delete , truncate and drop commands? : Sql dba
Is postgresql a nosql database?
Is it mandatory for the primary key to be given a value when a new record is inserted?
how do you control the max size of a heap table? : Sql dba
what is sql in mysql? : Sql dba
What are the two types of exceptions.
How to run sql statements with oracle sql developer?
How many joins in sql?
explain mysql aggregate functions. : Sql dba
Why do we use procedures in pl sql?