Home > Database > Mysql Tutorial > body text

MySQL数据库查询语句注意事项

WBOY
Release: 2016-06-07 17:02:24
Original
1004 people have browsed it

phpadmin 将生成的SQL 语句转换成PHP代码的时候,会发现,字段属性换成了 `cc_user`而不是单引号。因为PHP中单引号内是作为字符串

帮同事调试代码:

$sql_insert_user = sprintf( "INSERT INTO cc_user('cc_id', 'name', 'password') values (:cc_id, :name, :password)");

一直提示SQL语句语法错误,无法进行 insert操作。

直接在MySQL中执行SQL 语句时,是可以的。

phpadmin 将生成的SQL 语句转换成PHP代码的时候,会发现,字段属性换成了 `cc_user`

而不是单引号。

因为PHP中单引号内是作为字符串处理的,,所以字段要么使用 ` (制表符Tab上面的按键),要么就不加(这种情况下,字段不能是mysql关键字或者保留字)。

基础很重要呀!

linux

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template