blob: 18aea52038a3bc3c7aa260dee645e73551b5e9ce [file] [log] [blame]
SELECT
m.employee_id,
(
SELECT
sub.full_name
FROM
cp.`employee.json` as sub
WHERE
sub.full_name = 'Maya Gutierrez'
LIMIT 1
) as full_name
FROM
cp.`employee.json` as m
WHERE
m.gender LIKE 'F' LIMIT 5;