Why I Like Using UUIDs on Database Tables
Be it for security or marketing your teams should probably be using them.
dbeaver erd diagram 을 손쉽게 생성하는 방법을 알아봅시다.
dbeaver에서 데이터베이스로부터, erd로 1분만에 떨어트리는 방법을 알아봅시다. 이전에 도서관 토이 프로젝트를 했었습니다. 거기서 library 데이터베이스를 생성했고, 3개의 테이블을 이용했는데요. erd 다..
JPA에서 대량의 데이터를 삭제할때 주의해야할 점
안녕하세요? 이번 시간엔 JPA에서 대량의 데이터를 삭제할때 주의해야할 점을 샘플예제로 소개드리려고 합니다. 모든 코드는 Github에 있기 때문에 함께 보시면 더 이해하기 쉬우실 것 같습니다. (공부한 내용을..
Top 10 Tips to Improve SQL Query Performance
If we use * then it gives all columns of the particular table and it takes time so that’s why it’s better to use the column name which is required for the result. If sometimes need to use subquery at…