hibernate bulkupdate: update query syntax
when i update a table using hibernate
getHibernateTemplate().bulkUpdat开发者_如何学运维e("UPDATE Channel SET number = 40 AND active = 0");
i get error: ERROR [PARSER]: unexpected token: AND
evething run well if i remove AND active = 0
i dont know how to correct this query.
help me pls, thanks :)
Try this:
UPDATE Channel SET number = 40, active = 0
精彩评论