MCQ IN COMPUTER SCIENCE & ENGINEERING

COMPUTER SCIENCE AND ENGINEERING

SQL

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
With SQL, how do you select all the columns from a table named “Persons”?
A
SELECT Persons
B
SELECT [all] FROM Persons
C
SELECT * FROM Persons
D
SELECT *.Persons
Explanation: 

Detailed explanation-1: -SELECT * FROM <TableName>; This SQL query will select all columns and all rows from the table. For example: SELECT * FROM [Person].

Detailed explanation-2: -Answer: C. The character ‘*’ is used to select all the columns of the table.

Detailed explanation-3: -With SQL, how do you select all the records from a table named “Persons” where the value of the column “FirstName” is “Peter"? SELECT * FROM Persons WHERE FirstName=’Peter’;

Detailed explanation-4: -With SQL, how do you select all the records from a table named “Persons” where the value of the column “FirstName” ends with an “a”? Explanation: The SQL LIKE clause is used to compare a value to similar values using wildcard operators. 3.

There is 1 question to complete.