我如何使用sqlcommand搜索具有多个输入的数据

问题描述 投票:0回答:1

enter image description here

我有一个数据表,就像现在的图片一样,我想搜索工厂和面板的Tog编号以显示组和协调首先,我可以试试这个

SqlCommand cmd = new SqlCommand("Select [Group],[Coordination] from [Table] where Plant ='" + txt1.Text + "'", con);

但是我该如何处理多个输入?

c# sql database sqlcommand
1个回答
0
投票

SqlCommand cmd =新的SqlCommand(“从[表]中选择[Group],[Coordination],其中Plant LIKE'%” + txt1.Text +“%'或PanelTogNumber LIKE'%” + txt1.Text +“%'” ,con);

您可以尝试。

© www.soinside.com 2019 - 2024. All rights reserved.