Skip to content

Instantly share code, notes, and snippets.

@develohpanda
Created July 11, 2017 03:43
Show Gist options
  • Save develohpanda/68e2d301dc8203adf77cb38183e31c3c to your computer and use it in GitHub Desktop.
Save develohpanda/68e2d301dc8203adf77cb38183e31c3c to your computer and use it in GitHub Desktop.
Update Rows using join
update ft
set ft.description = 'test'
from firstTable ft
inner join secondTable st on
ft.id = st.id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment