Which one of the following is the correct way to select all
columns and all rows from "vtable"?
Choice 1
SELECT FROM vtable SELF JOIN vtable
Choice 2
SELECT ALL COLUMNS FROM vtable WHERE ALL ROWS = *
Choice 3
SELECT EVERYTHING FROM vtable
Choice 4
SELECT vtable.* WHERE vtable = vtable
Choice 5
SELECT * FROM vtable WHERE 1 = 1
Answer Posted / sapin
SELECT * FROM vtable WHERE 1 = 1
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Why do we use preparedstatement?
What are the similarities between a function and a procedure?
Can mysql and mariadb coexist?
How to get help information from the server?
Is mysql free for enterprise?
What is difference between oracle sql and mysql?
How to print message in mysql trigger?
Table - Products has number of products as below Productid ProductName 1 iPhone 2 iPad 3 BlackBerry Table - SalesPersonProduct has the below records Salespersonid productid S1 1 S1 2 S1 3 S2 1 S3 2 Write a SQL query that returns the total number of sold products
How can we optimize stored procedure?
How many TRIGGERS are allowed in MySql table?
How to return query output in xml format?
What is mysql_pconnect?
What is database clustering in mysql?
What is session variable in mysql?
What is mysql root?