Difficulty: Easy
Correct Answer: table
Explanation:
Introduction / Context:
SQL queries are declarative: you specify what data you want, and the DBMS returns a structured set of rows and columns. Understanding the nature of that result clarifies how to process it in applications and BI tools.
Given Data / Assumptions:
Concept / Approach:
The result of a SELECT is a relation (a table-like structure): a set or multiset of rows, each with the same columns. While GUIs might render reports, grids, or charts, the underlying logical form is a table. Files, forms, or diagrams are external representations, not the SQL result itself.
Step-by-Step Solution:
Verification / Alternative check:
APIs such as JDBC, ODBC, and ADO.NET expose the result as row/column data sets, reinforcing the table concept.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing what the client tool shows with the underlying data structure. The result is always tabular even if later pivoted or charted.
Final Answer:
table
Discussion & Comments