|
| Total Answers and Comments: 3 |
Last Update: June 01, 2007 Asked by: Sudhir |
|
| | |
|
No best answer available. Please pick the good answer available or submit your answer. | |
June 24, 2006 07:48:59 | #1 |
| Sajid Ansari |
|
|
RE: Write a query to display all the odd numbers from ...
| SELECT DECODE(MOD(column_name 2) 1 1)FROM table_name WHERE DECODE(MOD(PTR_ID 2) 1 1) 1 |  | | Is this answer useful? Yes | No | | |
|
| |
|
July 24, 2006 02:45:22 | #2 |
| jack |
|
|
RE: Write a query to display all the odd numbers from ...
| | SELECT DECODE(MOD(column_name 2) 1 column_name) odd_Numbers FROM table_name WHERE DECODE(MOD(PTR_ID 2) 1 1) 1 |  | | Is this answer useful? Yes | No | | |
|
| |
Go To Top
|