通常我在一个表(销售)示例中在 MySql 中插入数据。
string query = "INSERT INTO sales (price, user, date) " +
"VALUES(" +
"'" + txtQuant.Text + "'," +
"'" + txtLog.Text + "'," +
"NOW())";
但现在我改变了主意,决定单独创建另一个表,我将为列价格命名设置。这是我第一次这样做,所以我不知道该怎么做。
我试过这个。
string query = "INSERT INTO sales (user, date), settings (price) " +
"VALUES(" +
"'" + txtLog.Text + "'," +
"NOW())", "'" + txtQuant.Text + "'";
但它不起作用。