如何动态添加where条件?
如何在 n=Node.js SQL Server 中进行动态查询而不进行 SQL 注入?
我使用这个查询来防止 SQL 注入。
const conn = await pool;
conn.query`select * from TEST where id = ${test}`;
但有时我必须添加一个 WHERE
子句。
我尝试了这个,但是发生了错误。
let addwhere = `AND name = ${name}}`;
conn.query`select * from TEST where id = ${test} ${addwhere}`;
如何动态添加where条件?
How do I make a dynamic query without SQL injection in n=Node.js SQL Server?
I used this query to prevent SQL injection.
const conn = await pool;
conn.query`select * from TEST where id = ${test}`;
But sometimes I have to add a WHERE
Clause.
I tried this, but an error occurred.
let addwhere = `AND name = ${name}}`;
conn.query`select * from TEST where id = ${test} ${addwhere}`;
How do I dynamically add where conditions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论