Need to identify the most frequent occurrence of an item ID from an item description table, match it to its corresponding ID on an item sales table, and then display only the name from the description table corresponding to only the most frequently located item ID on the sales table. Does this query look remotely correct?
SELECT ItemName FROM ItemDescriptionTable
WHERE ItemID =
(SELECT TOP 1 (ItemID)
FROM ItemSalesTable);