Computer Science, asked by TbiaSamishta, 1 year ago

The result of a select query is generally represented as which of the following components? (a) Table (b) Query (c) Constraint (d) Relation

Answers

Answered by Secondman
4

"Option (a) Table, the result of the select query is generally represented as Table.

For example, when using the query Select * from tablename; it displays the table of the tablename as the result. We can filter the data by adding filter condition in the select query. Usually the end result of the select query is represented as rows and columns which is referred as Table. Hence it cannot be query, constraint or relation.

"

Answered by StaceeLichtenstein
0

Option(a) is the correct answer to the given question.

Explanation:

  • The select query is used in the database to retrieved the record in the database .The record is always display in the form of one or more table in the database.
  • We will used the select query according to the user need .Following are the syntax of select query

        Select * from table-name ;// retrieved the record in the form of table

  • All the other option are not related to the given scenario that's why it is incorrect option.

Learn More :

  • brainly.in/question/8491656
  • brainly.in/question/7229761
Similar questions