3. Select sum(a) sum_1,max(a) max_1 ,count(a) count_1 from ( ( select 1 a from dual union all
Select to_number(‘2011’) a from dual union all select 1 a from dual) union select 2 b from dual);
Answer Posted / sudarshanbehera07@gmail.com
Ans: sum_1 max_1 count_1
2014 2011 3
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Are left and right joins the same?
Explain commit, rollback and savepoint.
What does count (*) do in sql?
Why is theta join required?
Why we use joins in sql?
i have a column which may contain this kind of value: 123*67_80,12*8889_5,34*8_874 ,12*7_7 (can contain space before a comma, and this string length can be anything) now i want to split this value into two column like: column1: 123*67,12*8889,34*8,12*7 column2: 80,5,874,7 use function for this
Explain the types of joins in sql?
What do you think about pl/sql?
Why is stored procedure faster than query?
what is uncommittable transactions? : Transact sql
Can triggers stop a dml statement from executing on a table?
Do we need to rebuild index after truncate?
How do you exit in sql?
Why is pl sql needed?
What are the different set operators available in sql?