Linking tables in SQL Server -
i have 2 tables
table1
id language
table2
id languagevalue
id
columns in both tables pks, if want table 1's language
column fetch data table 2's languagevalue
column, how link them? fks used when columns got pk or unique constraint on them confused now. plz help..thnx
take @ tutorial setting triggers.
http://www.sqlteam.com/article/an-introduction-to-triggers-part-i
with triggers, can when inserted, updated, or deleted on table1, table2. bit learn, it's 1 way it.
Comments
Post a Comment