각 서브쿼리마다 alias 를 달지 않아 생기는 에러입니다.



[에러]


select * from (select * from table);


 


[수정]


select * from (select * from table) t ;



'DB' 카테고리의 다른 글

[mysql] 게시판 조회수 업데이트 쿼리  (0) 2019.05.28
[MySql] mysql mybatis 페이지네이션 쿼리  (0) 2019.05.21
[MySql] mysql 문자열 합치기  (0) 2019.05.21
[MySql] mysql 주석 단축키  (0) 2019.01.23
mysql,maria DB 널처리 null  (0) 2018.11.24

+ Recent posts