πŸ“Š MySQL
Q. What will be the output of of the following SQL statement?
SELECT person_id, Fname, lname
FROM person;
  • (A) Show only columns (person_id, Fname, lname) and rows related to these columns
  • (B) names ending with utf8
  • (C) Show all rows
  • (D) Show all columns except (person_id, Fname, lname)
πŸ’¬ Discuss
βœ… Correct Answer: (A) Show only columns (person_id, Fname, lname) and rows related to these columns

Explanation: This SQL statement is asking the database to show you some information from a table called "person".

Explanation by: Rakesh Kumar
This SQL statement is asking the database to show you some information from a table called "person".

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
80
Total Visits
πŸ“½οΈ
12 mo ago
Published
πŸŽ–οΈ
Rakesh Kumar
Publisher
πŸ“ˆ
90%
Success Rate