If I run this query:
SELECT `Manga`.`id`, `Manga`.`name` FROM `mangas` AS `Manga` WHERE `Manga`.`id` in
(
SELECT `manga_id` FROM `mangas_genres` where `manga_id` = 1
)
My computer does not respond (I just mistype). It can't run this query. Is the above code invalid? Please, help me.
I think it is valid, but it can't run. I don't understand. It sure be MySQL, I run query on MYSQL workbench (not in PHP) my computer be very slower ( while run query) My table mangas and mangas_genres have more than 5000 rows.