LIMITing your search
You may find yourself working with tables that contain so many records that simple queries can take forever to load. This is especially challenging when you're searching for the right table to use and just need a quick result. For these scenarios the trick is to LIMIT
the number of rows that your query returns. In this exercise you will practice using this function.
Diese Übung ist Teil des Kurses
Applying SQL to Real-World Problems
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
SELECT *
FROM ___
___;