I would like to update a column within a table for a record only if that same record has additional events in a separate table. Here is what I have so far:
t1 - Table 1 t2 - table 2 c* - generic column
Update t1
Set c ='6'
From t1
Inner Join t2 on t1.c = t2.c
Where t2.c1 = '339' and t2.c2 ='0'
Basically, I would like to know if the specifics in the where clause are enough to check for events in t2 that correspond with a record that is within t1. Hopefully this makes sense. Feel free to let me know if I have explained this poorly, I tend to think everyone is in my head and knows my thoughts so i may be missing some important details.
RDBMSstands for Relational Database Management System.RDBMS is the basis for SQL, and for all modern database systems like MS SQL Server, IBM DB2, Oracle, MySQL, etc... – JW 웃 Mar 1 at 18:05INNER JOIN, you're query is already correct and enough. – JW 웃 Mar 1 at 18:05t2.c = '339' and t2.c ='0'will never be true – Kaf Mar 1 at 18:09