SELECT
cscart_ab__video_gallery_descriptions.video_path,
videos.video_id,
videos.product_id,
videos.status,
videos.pos,
videos.product_pos_type,
videos.product_pos,
videos.type,
videos.autoplay,
videos.show_in_list,
videos.settings,
videos.icon_type,
videos.storefront_id,
cscart_ab__video_gallery_descriptions.title,
cscart_ab__video_gallery_descriptions.description
FROM
cscart_ab__video_gallery AS videos
LEFT JOIN cscart_ab__video_gallery_descriptions ON cscart_ab__video_gallery_descriptions.video_id = videos.video_id
AND cscart_ab__video_gallery_descriptions.lang_code = 'en'
WHERE
1
AND videos.storefront_id IN (1, 0)
AND videos.type NOT IN ('H', 'R')
AND videos.status = 'A'
AND videos.product_id = 143
ORDER BY
videos.pos ASC