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
How is a PL/SQL code compiled?
What is a natural join sql?
Are stored procedures compiled?
What is #table in sql?
Which is better cte or subquery?
Is ms sql is free?
What is where clause in sql?
how many columns can be used for creating index? : Sql dba
Is it possible to create the following trigger: before or after update trigger for each row?
what is top in tsql? : Transact sql
What is rownum in sql?
Can we insert data into materialized view?
Explain unique key in sql.
Can ddl statements be used in pl/sql?
Explain the savepoint statement.