带字符串变量的SQL查询

时间:2014-03-16 09:31:24

标签: sql variables jstl

我正在尝试使用此sql查询,但我需要替换'用户名'用一个字符串变量!!

<sql:query dataSource="${snapshot}" var="result1">
SELECT name, code, price, quantity1, sub from basket where username = 'username';
</sql:query>

我在jsp中使用mysql语言...在html的部分

非常感谢任何帮助:)

1 个答案:

答案 0 :(得分:0)

SELECT name, code, price, quantity1, sub from basket where username = ? <sql:param value="${username}"/>