隐藏

根据历史直播手动创建对应的回看直播课时

发布:2023/7/26 13:39:24作者:管理员 来源:本站 浏览次数:710



--根据课程编号查看课程信息
select * from fs_course where course_no='202304271816340001'
--根据课程编号查看对应的课时列表信息
select * from fs_course_chapter_period  where course_no='202304271816340001'
--根据课时period_id查看对应课时直播视频列表信息
select * from fs_course_chapter_period_live where period_id=1348

--根据历史课时period_id,并复制创建新的对应课时直播视频信息
insert into fs_course_chapter_period_live(period_id,period_no,stream_id,video_url,video_length,create_time,live_type,file_id)
select 1471,'202307260914390001',stream_id,video_url,video_length,create_time,live_type,file_id from fs_course_chapter_period_live where period_id=1348
--
--根据课时period_id修改新的课时信息
--a是新课时id,b是旧课时
UPDATE fs_course_chapter_period a,fs_course_chapter_period b set a.screen_type=b.screen_type,a.task_id=b.task_id,a.record_flag=b.record_flag where a.period_id=1008 and b.period_id=1001