In my Java applicaion, I am using hibernate .hbm file to access database; Is this possible to update the primary key \'id\' column in the table; Where the \'id\' column in m
try to writing query like
update table_name set id=value where...............(specify remaining conditions)
update table_name set id=value where