mysql
unic5n - showRoom 쿼리문
seo dori
2023. 4. 15. 20:46
LEFT JOIN, JSON_ARRAYAGG, JSON_OBJECT
SELECT
show_room.id,
show_room.image_url,
show_room.descriptions,
show_room.header,
po.products
FROM show_room
LEFT JOIN(
SELECT
show_room_id,
JSON_ARRAYAGG(JSON_OBJECT(
"id", product.id,
"name",product.names,
"price",product.price,
"sub_description",product.sub_description,
"product_size",product_size,
"image_url",(SELECT
JSON_ARRAYAGG(image_url)
FROM product_image
WHERE product_image.product_id = product.id
)
) )AS products
FROM product
GROUP BY show_room_id
)po ON show_room.id = po.show_room_id
[
{
"id": 1,
"image_url":
"descriptions": "스타일리시한 윙체어에 몸을 깊숙이 기대고 풋스툴에 발을 올려두는 것보다 더 기분 좋은 일은 없을 거예요. 안에 실용적인 수납 공간이 숨어 있다면 더 그렇겠죠? 그 안에 무얼 넣고 싶으신가요? 그건 주인 마음에 달렸죠...",
"header": "어떤 거실을 꿈꾸시나요?",
"products": [
{
"id": 13,
"name": "FROSETWE 프뢰세트위",
"price": 54000,
"image_url": [
"https://images.",
"https://images."
],
"product_size": "39cm x 80cm x 55cm",
"sub_description": "이지체어"
},
{
"id": 11,
"name": "OSTANOWE 외스타뇌위",
"price": 86000,
"image_url": [
" https://images"
],
"product_size": "34cm x 76cm x 45cm",
"sub_description": "의자"
},
{
"id": 1,
"name": "LINANASWE 리나네스위",
"price": 99999,
"image_url": [
"https://images.",
"https://",
"https://images",
"https://images"
],
"product_size": "121cm x 68cm x 78cm",
"sub_description": "3인용소파"
}
]
}
,{"id": 2,
"image_url": "https://images.",
"descriptions": "새로운 HICKTOGRAM 힉토그람은 정교하게 제작되었으며 유행을 타지 않는 디자인이에요. 어느 공간에도 개성을 더할 수 있는 심플하면서도 눈에 확 띄는 제품이죠. 디자이너 Carlson은 \"클래식한 디자인이라 친숙한 느낌이 들고, 목재 소재가 자연 그대로의 따뜻한 느낌을 주며, 동시에 가볍고 쾌적한 분위기를 연출해요.\"라고 전합니다.",
"header": "쉽게 꾸미는 조화로운 거실",
"products": [
{
"id": 15,
"name": "ODGERWE 오드게르위",
"price": 55000,
"image_url": [
" https://images0"
],
"product_size": "45cm x 55cm x 78cm",
"sub_description": "스툴"
},
]
}]