2 つの where 句を使用してアクセス データベースから値を取得しようとしました。これは私が得たエラーです!
"Syntax error (missing operator) in query expression 'unit1<=34 and unit2>=34 where"'
.
これは私のコードです:
OleDbConnection con = new OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=E:\\Work\\Office\\Electricity_Board_bill_calculator\\gk.accdb;");
con.Open();
OleDbCommand com5 = new OleDbCommand("select id from tblBillConfig where unit1<="
+ contot + " and unit2>=" + contot + " where group=3 ", con);