create cast1 형 변환과 CREATE CAST postgresql은 형변환을 직접 추가하고 제거하고 할 수 있네요. 형변환도 3가지가 있습니다.explicit,assignment,implicit가 있습니다.explicit는 명시적, assignment는 문맥상 대입 연산이 일어나는 경우에 묵시적으로 호출되는 형 변환자를 만듬. implicit는 무조건 묵시적입니다. 해당 DB가 가지고 있는 implicit cast의 목록을 확인하고 싶으면 아래의 쿼리를 활용합니다. selectcastsource::regtype as source_type,casttarget::regtype as target_type,castcontextfrom pg_castwhere castcontext = 'i'order by 1 cast를 생성하고 싶다면 create cast로.. 2024. 10. 25. 이전 1 다음