kenu / odevtube

개발 관련 유튜브

Home Page:https://mp4.okdevtv.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🧹 Drama 제거

kenu opened this issue · comments

commented

🧹 Drama 제거
UI
DB

commented
select id from channels c 
where category = 'drama';

select * from videos where videos.ChannelId in (
select id from channels c 
where category = 'drama'
);

delete from videos where videos.ChannelId in (
select id from channels c 
where category = 'drama'
);

delete from channels 
where category = 'drama';