-
-
Save pelaospeed/f32817d69f1f5d2774b8a4c6bb90dc89 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| insert into staging.dim_product ( | |
| product_id, | |
| product_category, | |
| product_name_length, | |
| product_description_length, | |
| product_photos_qty, | |
| product_weight_g, | |
| product_length_cm, | |
| product_height_cm, | |
| product_width_cm, | |
| is_current_version | |
| ) | |
| (select | |
| product_id, | |
| CASE | |
| when product_category is not null then product_category | |
| else 'OTHER' | |
| END as product_category, | |
| product_name_length, | |
| product_description_length, | |
| product_photos_qty, | |
| product_weight_g, | |
| product_length_cm, | |
| product_height_cm, | |
| product_width_cm, | |
| true as is_current_version | |
| from live.product | |
| where product_id not in (select product_id from staging.dim_product)); | |
| -- Notes : Inserting new data on product dimenstion table |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment