89.0k views
0 votes
Which of these outputs can be found by querying a database? the weather for a day next month the number of students with the last name Smith a graph of the number of students who play each sport a list of all the different ways that a student’s name might be spelled

User Janezcka
by
6.0k points

1 Answer

5 votes
The best possible answer is number of students with the last name Smith

A query uses the "SELECT" statement to extract data from the database. In the example above, if you have a students’ table, you might want to issue an SQL statement that returns the number of students with the last name Smith. This request to the database can be performed in a relational database.

User Matheus Rocha
by
6.2k points