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 union? : Sql dba
What is foreign key and example?
What is join view in sql?
Explain the components of sql?
What is the basic form of sql query?
Which command is used to delete a trigger?
What is interval partition?
Does a primary key have to be a number?
How do I restart sql?
Write the alter statement to enable all the triggers on the t.students table.
How do I partition a table in sql?
What is primary and foreign key?
Explain the difference between sql and mysql.
How do you explain an index number?
how to delete an existing column in a table? : Sql dba