我有一个完整的跟踪数据表,作为特定课程,课程编号6.
现在我为课程编号11添加了新的跟踪数据.
每行数据用于一个课程的一个用户,因此对于分配到课程6和课程11的用户,有两行数据.
客户希望所有在2008年8月1日之后的任何时间完成课程编号6的用户也可以在课程11中完成标记.但是我不能只将6转换为11,因为他们希望保留课程6中的旧数据.
因此,对于课程编号为6的每一行,标记为完成,并且大于2008年8月1日的日期,我想在包含该特定用户的课程11的跟踪的行上写入完成数据.
我需要将从第6行到第11行的数据继续进行,以便移动用户得分和发布完成日期等内容.
这是表的结构:
userID (int) courseID (int) course (bit) bookmark (varchar(100)) course_date (datetime) posttest (bit) post_attempts (int) post_score (float) post_date (datetime) complete (bit) complete_date (datetime) exempted (bit) exempted_date (datetime) exempted_reason (int) emailSent (bit)
一些值将为NULL,并且显然不会继承userID/courseID,因为它已经在正确的位置.
也许我读错了这个问题,但我相信你已经插入了11个记录,只需要更新那些符合你列出的课程6的数据.
如果是这种情况,您将需要使用UPDATE
... FROM
声明:
UPDATE MyTable SET complete = 1, complete_date = newdata.complete_date, post_score = newdata.post_score FROM ( SELECT userID, complete_date, post_score FROM MyTable WHERE courseID = 6 AND complete = 1 AND complete_date > '8/1/2008' ) newdata WHERE CourseID = 11 AND userID = newdata.userID
有关详细信息,请参阅此相关SO问题
UPDATE c11 SET c11.completed= c6.completed, c11.complete_date = c6.complete_date, -- rest of columns to be copied FROM courses c11 inner join courses c6 on c11.userID = c6.userID and c11.courseID = 11 and c6.courseID = 6 -- and any other checks
我总是查看更新的From子句,就像正常选择之一一样.实际上,如果要在运行更新之前检查要更新的内容,可以使用select c11替换更新部分.*.看看我对跛脚鸭回答的评论.
将值从一行复制到同一表(或不同表)中的任何其他限定行:
UPDATE `your_table` t1, `your_table` t2 SET t1.your_field = t2.your_field WHERE t1.other_field = some_condition AND t1.another_field = another_condition AND t2.source_id = 'explicit_value'
首先将表别名化为2个唯一引用,以便SQL服务器可以区分它们
接下来,指定要复制的字段.
最后,指定管理行选择的条件
根据您可以从单行复制到系列的条件,或者您可以将系列复制到系列.您还可以指定不同的表,甚至可以使用子选择或连接来允许使用其他表来控制关系.
使用SELECT插入记录
INSERT tracking (userID, courseID, course, bookmark, course_date, posttest, post_attempts, post_score, post_date, complete, complete_date, exempted, exempted_date, exempted_reason, emailSent) SELECT userID, 11, course, bookmark, course_date, posttest, post_attempts, post_score, post_date, complete, complete_date, exempted, exempted_date, exempted_reason, emailSent FROM tracking WHERE courseID = 6 AND course_date > '08-01-2008'