我正在尝试使用看起来像的 where 子句执行 SQL 语句
string s2 = "Select * from idtyfile where oysterid=" + id ;
SqlCommand da2 = new SqlCommand(s2, con); or
SqlAdapter da2 = new SqlAdapter(s2, con);
当我尝试执行它们时,这两个都失败了
da2.ExecuteReader();
ID中的数据看起来像
ID
43PCOU5T
ZP6RAEJ0
由于某种原因,这两个查询都未能处理这类数据。