私は、テーブルのユーザーベースに以下の値を挿入しようとしていますここMySQLのINSERTクエリ構文エラー
<http://www.w3schools.com/php/php_mysql_insert.asp >
INSERT INTO table_name (column1, column2, column3,...) VALUES (value1, value2, value3,...)
このようなmysqlのインサートを作るしようとしています。
54007033331, Codi Y, Male, pub, http://google.com/ggg.jpg
INSERT INTO userbase (id,name,gender,publicity,pic) VALUES (54007033331, Codi Y, Male, pub, http://google.com/ggg.jpg)
MySQL query failed: 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 'Y, Male, pub, http://google.com/ggg.jpg)' at line 1
誰でもこの構文エラーを修正する正しい方法を教えてください。
文字列はmysql(および他のほとんどの言語)で引用する必要があります。 – aroth