대충이라도 하자

RDBMS JOIN : String OR int 본문

꼬꼬마 개발자 노트/SQL

RDBMS JOIN : String OR int

Sueeeeee
반응형

When joining two tables, you have to have a foreign key. 

Try to join two tables using foreign key which type is Int. 

In terms of performance, it makes huge difference compared to the case using String type

as a foreign key. 

When Indexing, the speed with string type and int type are completely different.

 

 

테이블 두 개를 조인할 때, 외래키를 사용해야 한다.

외래키를 만들 때는, 되도록이면 string 타입보다는 int 타입을 사용하도록 해야 한다.

인덱싱을 할 때, int 타입이 string 타입보다 속도면에서 훨씬 빠르며, 성능에서 큰 차이를 만들어낸다.

반응형
Comments