and Answers 2025 Expert Verified | Ace
the Test
Which SELECT statement correctly returns only 10 rows?
a.
SELECT * FROM Country ORDER BY Name Show 10;
b.
SELECT * FROM Country ORDER BY Name List 10;
c.
SELECT * FROM Country ORDER BY Name Limit 10;
, d.
SELECT Top 10 FROM Country ORDER BY Name;
e.
SELECT * FROM Country ORDER BY Name OFFSET 10; - 🧠 ANSWER
✔✔c.
SELECT * FROM Country ORDER BY Name Limit 10;
Which function is great for finding a string within another string?
a.
within
b.
find
c.
lookup
d.
locate