Multiple choice The 'IN SQL' keyword is used with the DISTINCT SQL keyword only is used with the INSERT SQL keyword only determines if a value matches any of the values in a list or a sub-query defines the tables we are selecting or deleting data from Reveal answer Fill a bubble to check yourself C Correct answer Explanation The IN operator in SQL tests whether a value matches any value in a specified list or any value returned by a subquery. It is not limited to DISTINCT or INSERT keywords, and FROM (not IN) defines the tables for SELECT or DELETE operations.