메뉴 건너뛰기

OBG

Programming

OBG
조회 수 147 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

What would the difference between these two queries be? They yield the same results.

SELECT * 
FROM Person 
JOIN Worker 
  ON Person.id = Worker.id;

and

SELECT * 
FROM Person, 
     Worker 
WHERE Person.id = Worker.id;

 

There is no difference at all.

 

https://stackoverflow.com/questions/20138355/whats-the-difference-between-comma-separated-joins-and-join-on-syntax-in-mysql

?

  1. Programming 게시판 관련

  2. 서비스중인 게임 DB 설계(쿠키런) 기초

  3. What's the difference between comma separated joins and join on syntax in MySQL?

  4. 수신 기한이 지난 데이터를 MySQL에서 삭제할 때의 이야기

Board Pagination Prev 1 Next
/ 1
위로