node 之 mysql的占位符
什么是占位符?
sql中的"?" 就是占位符,比如
select *from form books where id > ? insert into books set ? update books set ? where id= ? delete from books where id= ?
如何为占位符传值
当sql语句中使用占位符,则query方法需要使用参数2为这些占位符传递实际的值,并且不同的"?"需要的值格式也不同,具体需要符合下面三种要求
1.sql中有 1 个占位符,则query方法的第二个参数设置为一个值
2.sql中有 多 个占位符,则query方法的第二个参数设置为数组,数组中的值按照顺序分别传递给每个占位符
3.sql中,如果 字段=值,字段=值...使用 "?" 占位了, 则需要为这个 "?" 传递一个对象