Q1 Single choice Flag The data from t1 table is:Assuming You want to see this output:Which query achieves the preceding result? A SELECT name FROM t1 WHERE name LIKE ,_e% B SELECT name FROM t1 WHERE name LIKE,e%.; C SELECT name FROM t1 GROUP BY name ORDER by name LIMIT 1,1; D SELECT name FROM t1 GROUP BY name HAVING sun ( marks)=176 ORDER BY name; Correct answer