프로그래밍/DB
-
윈도우에서 postgreSQL 시작하기 - pgvector 윈도우 설치하기프로그래밍/DB 2024. 8. 20. 19:30
윈도우에서 pgvector 사용하기 윈도우에서 pgvector를 설치하고 사용하는 과정을 기록해보겠습니다. https://github.com/pgvector/pgvector?tab=readme-ov-file GitHub - pgvector/pgvector: Open-source vector similarity search for PostgresOpen-source vector similarity search for Postgres. Contribute to pgvector/pgvector development by creating an account on GitHub.github.com https://learn.microsoft.com/en-us/cpp/build/building-on-the..
-
윈도우에서 postgresql 시작하기 - postgresql 설치 및 pgAdmin 사용방법프로그래밍/DB 2024. 8. 19. 14:48
postgreSQL 다운로드 https://www.postgresql.org/download/windows/ PostgreSQL: Windows installersWindows installers Interactive installer by EDB Download the installer certified by EDB for all supported PostgreSQL versions. Note! This installer is hosted by EDB and not on the PostgreSQL community servers. If you have issues with the website it's hostewww.postgresql.org 위 사이트에서 Download the insta..
-
mysql left / right outer join 설명프로그래밍/DB 2024. 2. 20. 19:33
MySQL에서 LEFT OUTER JOIN과 RIGHT OUTER JOIN은 두 테이블 간의 관계를 기반으로 데이터를 결합할 때 사용되는 SQL 조인 유형입니다. 이들 각각은 조인되는 두 테이블 중 하나의 모든 레코드를 포함하도록 보장하며, 다른 테이블의 일치하는 레코드가 없는 경우 NULL 값을 포함합니다. 이러한 조인 유형을 통해 관계형 데이터베이스에서 두 테이블 간의 관계를 유연하게 표현할 수 있습니다. LEFT OUTER JOIN LEFT OUTER JOIN (또는 단순히 LEFT JOIN)은 기준 테이블(왼쪽 테이블)의 모든 레코드와 조인 테이블(오른쪽 테이블)의 일치하는 레코드를 반환합니다. 조인 테이블에 일치하는 레코드가 없는 경우, 결과는 기준 테이블의 레코드와 NULL 값을 포함합니다. ..