select b.articleUid, b.contents, b.title, b.writerId, b.writtenDate, b.hit 

            from (

            select articleUid 

            from boardA 

            order by articleUid desc 

            limit 10 offset 0 ) a 

            join boardA b on (b.articleUid = a.articleUid);


게시판 페이징한다고 이 쿼리를 날리고있는데


위아래 걍 동일하게 날린건데 결과가 다름


정렬이 역순으로 나와야 정상인데 역순을 안함


같은 쿼리가 어떻게 다른 결과가 나오는거냐?