I have the table like this
S.No Name ID
01 Xyz 123
I want the result as
01Xyz123
How to write the query to retrieve the entire row data in a
single column?
Answer Posted / g sivanagaraju
SELECT S.NO||NAME||ID
FROM <table_name>
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
what is a primary key? : Sql dba
What is set serveroutput on?
How can you load microsoft excel data into oracle? : aql loader
Are null values same as that of zero or a blank space?
What is aggregate function in sql?
How do I remove all records from a table?
Is grant a ddl statement?
what is sub-query? : Transact sql
How to fetch values from testtable1 that are not in testtable2 without using not keyword?
What is the difference between inner join and outer join?
What are the disadvantages of not performing database normalization?
Which data type is a composite type?
What type of join is sql join?
How can we make an if statement within a select statement?
What is auto increment?