有个对象a是:
{
id : 1,
name:'abc'
}
自定义sql:
select * from table where id = @a.id
打印出来的sql是:select * from table where id = {id : 1,name:'abc'}
但是:select * from table where id = ${a.id}
打印出来的sql是:select * from table where id = 1
虽然第二种方法没问题,但是我要?传参,防止sql注入,请问这个怎么写啊?
2 回复
添加回复
请先登陆