sql 模糊查询几种写法
摘要:1 LIKE '%${name}%' 2 LIKE "%"#{name}"%" 3 LIKE CONCAT('%',#{name},'%')
阅读全文
posted @
2022-05-20 14:50
隔壁老王(加速版)
阅读(79)
推荐(0) 编辑
jsp 在下拉列表展示查询内容
摘要:方式一<select id="productName" name="productName" path="productName" style="width: 150px"> <option value="">请挑选</option> <c:forEach items="${page}" var="
阅读全文
posted @
2022-05-18 14:27
隔壁老王(加速版)
阅读(314)
推荐(0) 编辑
JSP需要的内容展示到下拉列表
摘要:<select id="userId" name="userId" style="width: 200px" > <option value=""> 请挑选 </option> <c:forEach items="${page.list}" var="u"> <option value="${u.u
阅读全文
posted @
2022-05-11 16:04
隔壁老王(加速版)
阅读(41)
推荐(0) 编辑