____________ determines how to filter the records in the Query output. *
Answers
Answered by
1
Answer:
Answered by
0
Answer:
SELECT determines how to filter the records in the Query output
Explanation:
SELECT command is used to display the set of data as per the requirement. We can either display the whole date or we can explicitly specify what data is exactly needed.
For example,
SELECT * FROM student;
It will display all the data of student table including roll number, name, subject and marks.
But if we write,
SELECT rollno, name FROM student;
It will display only the filtered data means only roll number and name of the students will be displayed.
#SPJ3
Similar questions