The following SQL statement selects the first three records from the "Customers" table, where the country is "Germany":
SELECT * FROM Customers
WHERE Country='Germany'
LIMIT 3;
WHERE Country='Germany'
LIMIT 3;
Practice Excercise Practice now