美文网首页
每日必背

每日必背

作者: EmptyBottl_520d | 来源:发表于2018-08-08 11:47 被阅读0次

    每日必备

    #添加外键 先保证删除了 再添加
    ALTER TABLE `student_info` DROP FOREIGN KEY `courseid`;
    
    ALTER TABLE `student_info` ADD CONSTRAINT `courseid` FOREIGN KEY (`course_id`) 
    REFERENCES `course_info` (`course_id`) ON DELETE RESTRICT ON UPDATE RESTRICT;
    
    LOCK TABLES `student_info` WRITE;
    ulock tables;
    

    相关文章

      网友评论

          本文标题:每日必背

          本文链接:https://www.haomeiwen.com/subject/tdbtbftx.html