0

複数の列を持つ2つのテーブルがあります。カラムの 1 つが Product です。製品が table1 にない場合は、product='noproduct' にします。誰かがこのクエリを手伝ってくれませんか。テーブル 1 列 name,address,product テーブル 2 列 product If Product not in table2 then product='no product'

4

2 に答える 2

0

お役に立てれば :

update table1 set product  = ISNULL(table2.product , 'no product') from
table1 left join table2 on table1.product  = table2.product 
于 2013-03-28T09:16:13.823 に答える
0

左結合について話しているようです。答えが null の場合、合体式を使用してカスタム テキストを返すことができます。

参照: http://msdn.microsoft.com/en-us/library/ms190349.aspx

于 2013-03-27T17:00:21.433 に答える