Dbeaver로 SQL Server 접속시 database와 scema를 앞에 붙여줘야 해서 쿼리하기 번거로울 때가 있다.
select top 10 * from ming.gu.good by created_at desc;
ming 데이터베이스의 gu 스키마의 good테이블을 조회하는데 상당히 번거롭다.
데이터베이스를 클릭하고 F4, 혹은 마우스 우측 클릭 Connection settings로 들어간 뒤에 Default Database, Default Schema를 지정해준다.
select top 10 * from good order by created_at desc;
다른 database 혹은 다른 schema를 참조하고 싶으면 기존과 똑같이 프리픽스를 넣고 닷으로 구분하면 된다.
'Database' 카테고리의 다른 글
[MongoDB] MongoDB Tool 이용한 접속 (0) | 2023.08.02 |
---|---|
[MongoDB] Docker로 MongoDB 설치 (0) | 2023.07.28 |
[Mac M1] Redis 설치 및 실행 (0) | 2022.08.04 |
[PostgreSQL] sql file import via Git Bash in Window OS (2) | 2022.07.11 |
[MSSQL & SQL Server] Dirty read, WITH (NOLOCK) (0) | 2022.06.09 |