SELECT
id
FROM
ca_brand
WHERE
parentId IN (
SELECT
ca_brand.id
FROM
ca_brand
WHERE
parentId = (
SELECT
id
FROM
ca_brand
WHERE
title = '輕型車'
)
)it