我想查询数据,并且列(大陆)的值为“非洲”或 Null。
我想在查询中使用此列名,但对于名称不是非洲的国家/地区,我没有得到任何数据。
这是我尝试过的,但没有返回任何数据。
SqlDataAdapter dba = new SqlDataAdapter(@"SELECT * from [tblCountries]
WHERE [Continent] = '' order by [Common Name]", connection);
//WHERE [Continent]<>'Africa' order by [Common Name]", connection);
//WHERE [Continent] IS null order by [Common Name]", connection);
dba.Fill(ds);
drpNonAfricanCountries.DataSource = ds;
这样做的正确方法是什么?