Multiple choice Which query among following can give more than one name (employee name or ename)? SELECT ename WHERE ename AMONG ('value1', 'value2','value3', ...) SELECT ename WHERE ename = ('value1', 'value2','value3', ...) SELECT ename WHERE ename IN ('value1', 'value2','value3', ...) SELECT ename WHERE ename WITH ('value1', 'value2','value3', ...) None of these Reveal answer Fill a bubble to check yourself C Correct answer Explanation IN will find any value existing in a set of candidates.