我创建了一个参数查询来从数据库表中获取一些数据。一切正常,但不考虑 String sql = "SELECT titolo, icona, colore, tipo, identificativo, dato_campo FROM table " +
"WHERE titolo LIKE '%" + parametro + "%' " +
"OR dato_campo LIKE '%" + parametro + "%' AND tipo = 2 GROUP BY identificativo ORDER BY titolo ASC";
。你有什么建议吗?
validation
答案 0 :(得分:3)
支架:
SELECT titolo, icona, colore, tipo,
identificativo, dato_campo
FROM table
WHERE
(titolo LIKE '%" + parametro + "%' "
OR
dato_campo
LIKE '%" + parametro + "%'
)
AND tipo = 2
GROUP BY identificativo ORDER BY titolo ASC";