how can we write a column values horizontal by using sql stmt;
ex:
select name from table_name;(actual output)
a
b
c
d
require output is
a b c d
Answer Posted / kalaiselvi
select name from table_name order by name
| Is This Answer Correct ? | 1 Yes | 12 No |
Post New Answer View All Answers
What is sql*loader and what is it used for? : aql loader
What are tuples in sql?
Explain table and field in sql?
What is the clause we need to add in function body to return variable?
Explain the savepoint statement.
What is a string data type in sql?
What is duration in sql profiler trace?
Is it possible to remove child records without removing master table records...the two having pk,fk relationship?
What is sql query optimization?
how to drop an existing table in mysql? : Sql dba
Explain constraints in sql?
Is delete faster than truncate?
What is the size of partition table?
Why stored procedure is better than query?
How to load data with sql*loader?