Skip to content

Instantly share code, notes, and snippets.

@MinaMal
Created March 15, 2020 05:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MinaMal/4b0f1aa9041c4e47689f420962dc6a87 to your computer and use it in GitHub Desktop.
Save MinaMal/4b0f1aa9041c4e47689f420962dc6a87 to your computer and use it in GitHub Desktop.
INNER JOIN Example
SELECT t1.ID, t2.ID
FROM t1 INNER JOIN t2
ON t1.Pattern = t2.Pattern;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment