Looker
Looker | Lookml number ๊ฐ์ผ๋ก ์ค๋ ์ด(second), ๋ถ(minute) ๋จ์ ๊ฐ measure ์ฒ๋ฆฌํ๋ ๋ฐฉ๋ฒ | value_format ํํ์
ํ๋ฃจ๋ 24์๊ฐ ๋ถ์ผ๋ก๋ 1440๋ถ ์ด๋ก๋ 86400์ด dimension: total_time { type: number sql: ${TABLE}.total_time ;; } 1. total_time์ด ์ด(s) ์ผ ๊ฒฝ์ฐ measure: total_time_format { type: average sql: ${total_time }/86400 ;; value_format: "[>=1]d\"D\" h\"h\";\"0D\" h\"h\"" } 2. total_time์ด ๋ถ(m) ์ผ ๊ฒฝ์ฐ measure: total_time_format { type: average sql: (${total_time }*60)/86400 ;; value_format: "[>=1]d\"D\" h\"h\";\"0D\" h\"h\"" }..
2023. 6. 23. 09:31