The MATCH clause is roughly equivalent to the _______ clause in SQL and the RETURN clause to a ______ clause.
Answers
Answer
1). Where clause
2). Select clause
Step by ste explanation:-
The MATCH clause is roughly equivalent to the Where clause in SQL
Where clause is a part of match clause,start, optional match and with.
And the RETURN clause is equivalent to a select clause. The RETURN is associated with select clause
Therefore the correct answer is,
The MATCH clause is roughly equivalent to the Where clause in SQL and the RETURN clause to a Select clause.
Explanation:
The MATCH clause is roughly equivalent to the WHERE clause in SQL and the RETURN clause to a SELECT clause. The SELECT clause is used to query data from a database but when we want to limit the query results to a specific condition, the SQL WHERE clause is brought in the equation. The WHERE clause is used with AND logical operator which is only executed if the needs of ALL filter criteria are met.