Skip to content

Instantly share code, notes, and snippets.

@amberlex78
Last active April 7, 2024 15:41
Show Gist options
  • Select an option

  • Save amberlex78/8126cff7a6c8330938fc to your computer and use it in GitHub Desktop.

Select an option

Save amberlex78/8126cff7a6c8330938fc to your computer and use it in GitHub Desktop.
SQL many-to-many (users of task)
SELECT * FROM `tasks2users`
JOIN `users` ON (`tasks2users`.`user_id` = `users`.`id`)
JOIN `tasks` ON (`tasks2users`.`task_id` = `tasks`.`id`)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment