Computer Science, asked by durgeshmishra54713, 8 months ago

____________ determines how to filter the records in the Query output. *​

Answers

Answered by MysteriousAryan
1

Answer:

comodity

Answered by vishakasaxenasl
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