Skip to content

Instantly share code, notes, and snippets.

@yurijserrano
Created May 6, 2024 03:51
Show Gist options
  • Save yurijserrano/6f44f7c0026b92f1f4bbcc2294313b83 to your computer and use it in GitHub Desktop.
Save yurijserrano/6f44f7c0026b92f1f4bbcc2294313b83 to your computer and use it in GitHub Desktop.
Practice: SQL V - New Solution
SELECT count(*)
FROM vehicles, drivers
WHERE drivers.id = vehicles.driver_id and vehicles.make = 'Nissan';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment