(
SELECT count(*) as total, 'dd' as src FROM domain_details
WHERE (keywords LIKE '%forum%') OR (domain_name LIKE '%forum%')
) UNION (
SELECT count(*) as total, 'dt' as src FROM domain_temp
WHERE (domain_name LIKE '%forum%')
) UNION (
SELECT count(*) as total, 'bd' as src FROM ext_buydomains
WHERE (domain_name LIKE '%forum%')
) UNION (
SELECT count(*) as total, 'sd' as src FROM ext_sedo
WHERE
domain_details_id = 0 AND domain_temp_id = 0 AND forsale = 1 AND
domain_name LIKE '%forum%'
)
: Table 'ult7_data.ext_buydomains' doesn't exist |