#1242 - Subquery returns more than 1 row - mysql

前端 未结 4 1333
天涯浪人
天涯浪人 2020-12-15 11:54

I am trying to make a select statement that selects the image names from a MySQL database. The table is called - pictures_archive. I am also trying to select these pictures

4条回答
  •  时光说笑
    2020-12-15 12:16

    SELECT pictures_archive_filename FROM pictures_archive 
    WHERE pictures_archive_id = (SELECT pictures_archive_id 
    FROM pictures_archive_category WHERE pictures_category_id = 9 LIMIT 1)
    

提交回复
热议问题