How can u find column name from a table which have max value
in a row.( not max value)
Answer Posted / ganesh
create table aa_test(
a number,
b number,
c number)
;
select greatest(a,b,c) from aa_test where a=99 ;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
what is the different between now() and current_date()? : Sql dba
Can pl sql procedure have a return statement?
What are system versioned tables?
what are the authentication modes in sql server? : Sql dba
Explain what is rdbms?
Why query optimization is needed?
What are the most important ddl statements in sql?
what are the different type of normalization? : Sql dba
What are the dml statements?
What is the use of function in sql?
Is pl sql a scripting language?
How can I see all tables in sql?
What does t sql mean?
What are the types of index in sql?
Are subqueries better than joins?