我有一个数据表,就像现在的图片一样,我想搜索工厂和面板的Tog编号以显示组和协调首先,我可以试试这个
SqlCommand cmd = new SqlCommand("Select [Group],[Coordination] from [Table] where Plant ='" + txt1.Text + "'", con);
但是我该如何处理多个输入?
SqlCommand cmd =新的SqlCommand(“从[表]中选择[Group],[Coordination],其中Plant LIKE'%” + txt1.Text +“%'或PanelTogNumber LIKE'%” + txt1.Text +“%'” ,con);
您可以尝试。