私はmysqlのクエリを持っている:MySQLの挿入エラー
$sql = "
INSERT INTO
tbl_stopage
SET
bus_id = '$bid',
stopage_name = '$info[stopage_name]',
fare = '$info[fare]',
from = 'Ghy'
";
をしかし、私は上記のクエリを実行しようとしたとき、それは次のエラーを示しています予約されてからSQLで
DB Error.
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'from = 'Ghy'' at line 7
INSERT INTO tbl_stopage SET bus_id = '1', stopage_name = 'Dergaon', fare = '123', from = 'Ghy'
ありがとうxQbert、私は 'from'を' source_station'に変更しました。 – Nitish