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

Answers were Sorted based on User's Feedback



Which one of the following is the correct way to select all columns and all rows from "vtable..

Answer / sapin

Choice 5

Is This Answer Correct ?    9 Yes 0 No

Which one of the following is the correct way to select all columns and all rows from "vtable..

Answer / sapin

SELECT * FROM vtable WHERE 1 = 1

Is This Answer Correct ?    2 Yes 0 No

Which one of the following is the correct way to select all columns and all rows from "vtable..

Answer / v

SELECT * FROM vtable;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More MySQL Interview Questions

what is constraints?

0 Answers  


How do you insert a table?

0 Answers  


What is database url for mysql?

0 Answers  


what are the main differences between MyISAM and InnoDB table storage structures ? what are the advantages and disadvantages in usage of these ?

10 Answers   E2 Solutions, Tesco,


What is mysqlcommand?

0 Answers  


What is procedural api?

0 Answers  


What is a transaction? Describe mysql transaction properties.

0 Answers  


What is mysql default port number?

0 Answers  


How do I edit a database in mysql workbench?

0 Answers  


Write a query to select all teams that won either 1, 3, 5 or 7 games.

0 Answers  


How do I clear the command in mysql?

0 Answers  


What are string data types?

0 Answers  


Categories