Hi, > Hi there. I am trying to find what these > ON DELETE NO ACTION > > ON UPDATE NO ACTION > > would provide ib my db..... What are the options and what each of them do?
These have to do with Foreign Key Constraints. If you're using InnoDB tables, you could let MySQL automatically drop any child objects by using ON DELETE CASCADE. NO ACTION will raise an exception if there are child objects and you're trying to delete/update a parent row. With regards, Martijn Tonies Database Workbench - developer tool for InterBase, Firebird, MySQL & MS SQL Server. Upscene Productions http://www.upscene.com -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]