여러 프로젝트를 진행 하다보면 각 프로젝트별로 서로 다른 DBMS를 사용하게 될 경우가 많은데 해당 프로젝트 DB에 연결하기 위해서 개별 client들을 쓰는게 불편하게 느껴질 때가 있으신 분들에게 꼭 필요한 툴입니다. 아래 사이트에 접속해서 다운로드 받으면 됩니다. https://dbeaver.io/ DBeaver Community | Free Universal Database Tool DBeaver Universal Database Tool Free multi-platform database tool for developers, database administrators, analysts and all people who need to work with databases. Supports all po..
json_array_elements() 함수를 사용하면 json 타입의 컬럼에서 json 내의 배열 property의 값을 행으로 가져올 수 있습니다. with test as (select '{"array": [ "v1", "v2", "v3", "v4", "v5" ]}'::json json) select j.* from test, json_array_elements(json -> 'array') j
1. 구분자로 문자열을 분리한 다음 각각의 컬럼으로 나누기 with test as (select '서울,대구,부산,대전,인천,광주' cities) select split_part(cities, ',', 1) "1", split_part(cities, ',', 2) "2", split_part(cities, ',', 3) "3", split_part(cities, ',', 4) "4", split_part(cities, ',', 5) "5", split_part(cities, ',', 6) "6" from test 2. 문자열 분리 후 배열로 가져오기 with test as (select '서울,대구,부산,대전,인천,광주' cities) select string_to_array(cities, ',') fr..
공식 문서 참조 : https://www.postgresql.org/docs/9.3/functions-json.html OperatorRight Operand TypeDescriptionExample -> int Get JSON array element '[1,2,3]'::json->2 -> text Get JSON object field '{"a":1,"b":2}'::json->'b' ->> int Get JSON array element as text '[1,2,3]'::json->>2 ->> text Get JSON object field as text '{"a":1,"b":2}'::json->>'b' #> array of text Get JSON object at specified path '{"..
Unity Hub에서 프로젝트 템플릿 3D (URP) 선택 후 프로젝트를 생성합니다. URP 템플릿으로 생성하면 SampleScene에 Global Volume이라는 Object가 하나 더 들어가 있습니다. Inspection창을 들여다보면 Volume component를 통해 Global Post-Processing을 처리합니다. Tonemapping, Bloom, Vignette 3가지가 설정되어 있는데 Laser의 광선(발광) 효과를 주기 위해서는 Bloom 효과가 활성화 되어 있어야 합니다. 우선 scene에 plane, cube, cylider 오브젝트들을 추가합니다. 그다음 laser라는 Material을 하나 생성합니다. Inspector 창에 생성된 Material의 Shader를 Part..
아래 Github repository에 들어가면 다운로드 받을 수 있습니다. https://github.com/patrikx3/redis-ui GitHub - patrikx3/redis-ui: 📡 P3X Redis UI is a very functional handy database GUI and works in your pocket on the responsive 📡 P3X Redis UI is a very functional handy database GUI and works in your pocket on the responsive web or as a desktop app - GitHub - patrikx3/redis-ui: 📡 P3X Redis UI is a very functional hand..