SELECT
tmall_product_feature_variants.variant_id,
tmall_product_feature_variants.position,
tmall_product_feature_variants.color,
tmall_product_feature_variant_descriptions.variant
FROM
tmall_product_feature_variants
LEFT JOIN tmall_product_feature_variant_descriptions ON tmall_product_feature_variants.variant_id = tmall_product_feature_variant_descriptions.variant_id
AND tmall_product_feature_variant_descriptions.lang_code = 'en'
WHERE
tmall_product_feature_variants.variant_id IN (130)
ORDER BY
tmall_product_feature_variants.position ASC,
tmall_product_feature_variant_descriptions.variant ASC