Could really use some help with an update query...(SQL Express 2008 R2) I have two tables.
tblJP and tblMaster
I only have a string field that matches between the two tables.
tblJP.short_text = tblMaster.alt_text
I need to update
tblJP.LangString with tblMaster.Long_text
When
tblJP.short_text = tblMaster.alt_text
And
tblMaster.Lang = 'jp'
Any help would be greatly appreciated. I am spinning my wheels trying all sorts of logic and syntax from creating temp tables to other types of joins all with no luck. I am not that good with complex T-Sql.