Created
July 11, 2017 03:43
-
-
Save develohpanda/68e2d301dc8203adf77cb38183e31c3c to your computer and use it in GitHub Desktop.
Update Rows using join
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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