SQL-至少排除一次满足要求的列的值
有两个表Client和Stock:
Table Client
Column IDC (primary key, int, not null)
Table Stock
Column IDS (primary key, int, not null)
Column IDC (int, not null)
Column Type (bit, not null)
Column Price (decimal(10,2), null)
它们应被视为由连接Client.IDC = Sto ...