INSERT INTO USER
(fname,
mname,
lname,
uname,
password,
status,
address,
gender,
bdaym,
bdayd,
bdayy,
age,
contact,
isactive,
iscancelled)
VALUES ('" & SafeSTR(TextBox1.Text) & "',
'" & SafeSTR(TextBox2.Text) & "',
'" & SafeSTR(TextBox3.Text) & "',
'" & SafeSTR(TextBox7.Text) & "',
'" & SafeSTR(MD5(TextBox9.Text)) & "',
'" & SafeSTR(Combobox2.text) & "',
'" & SafeSTR(TextBox4.Text) & "',
'" & SafeSTR(ComboBox1.Text) & "',
'" & SafeSTR(ComboBox3.Text) & "',
'" & SafeSTR(ComboBox4.Text) & "',
'" & SafeSTR(ComboBox5.Text) & "',
'" & SafeSTR(TextBox5.Text) & "',
'" & SafeSTR(TextBox6.Text) & "',
1,
0)
我的查询有什么问题?