sql query to get zero records from a table having n no of
records
Answer Posted / welcomeashwin
SELECT * FROM TABLE_NAME WHERE 1 = 2;
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How do I quit sql?
what are all the different normalizations? : Sql dba
What is sql select statement?
What is dense_rank?
List the various privileges that a user can grant to another user?
Explain ddl statements in pl/sql?
Do ddl statements need commit?
what is the functionality of the function htmlentities? : Sql dba
What is the difference between stored procedure and view?
What is sql table?
What is the use of & in pl sql?
What is foreign key and example?
how to get a list of indexes of an existing table? : Sql dba
How we can update the view?
i have a column which may contain this kind of value: 123*67_80,12*8889_5,34*8_874 ,12*7_7 (can contain space before a comma, and this string length can be anything) now i want to split this value into two column like: column1: 123*67,12*8889,34*8,12*7 column2: 80,5,874,7 use function for this