我有七个输入框,人们可以在其中输入值。这些值与表格进行比较,最终会出现结果,这是一个搜索功能。现在我有一个包含三个输入框的页面并编辑以下内容:
if (box1 is filled && box2 is filled & box 3 is filled) {
sql="take all three values into account when comparing..";
}
if (box1 is not filled && box2 is not filled & box 3 is nog filled) {
sql="take no values into account when comparing..";
}
and so on...
对于三个盒子,这没关系,你只有几个与三个盒子的组合。然而,这对于 7 个盒子是不可行的,你会得到更多的组合!如何使我的 SQL 依赖于填写的字段?希望大家有一个聪明的解决方案!