I want to remove constraints from my table. My query is:
ALTER TABLE `tbl_magazine_issue` DROP CONSTRAINT `FK_tbl_magazine_issue_mst_users`
There is no such thing as DROP CONSTRAINT in MySQL. In your case you could use DROP FOREIGN KEY instead.
DROP CONSTRAINT
DROP FOREIGN KEY