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 / john bershan
select to_char(column_name,'dd-mon-yyyy') from <table_name>;
| Is This Answer Correct ? | 1 Yes | 6 No |
Post New Answer View All Answers
Does oracle use sql?
how many ways to get the current time? : Sql dba
What is the difference between having clause and where clause?
What is an implicit commit?
Mention what are the benefits of pl/sql packages?
Which normal form is best?
Why is normalization important?
What is the basic structure of an sql?
What are the types of sql commands?
How do you update f as m and m as f from the below table testtable?
Table A Table B 1 1 2 1 3 1. Union & union all --> A Union B , A Union all B 2. Minus , Intersect --> A minus B , B Minus A , A Intersect B 3. Joins A join B , A Left Join B A Right Join B , A full Join B 4. %Type - Uses & Benifit 5. Truncate & Delete 6. Pragma Autonomus Transaction 7. how to Perform DDL from function or procedure 8. Can we have DML inside Function 9. Rank & Dense Rank diffrence 10. Water Mark in Oracle 11. Index , Can we have index in all column of table if no then why ?
give the syntax of grant and revoke commands? : Sql dba
What is a sql driver?
What is left join in postgresql?
how to create a new table in mysql? : Sql dba