Which of the statements below best describes the result set returned by this SELECT statement? SELECT VendorState, COUNT(*) AS Column2 FROM Vendors GROUP BY VendorState HAVING COUNT(*) > 1;
a.The names of the vendors in each state
b.The duplicate vendors from each state
c.The number of vendors in each state
d.The number of vendors in each state having more than one vendor