Hi, I'm not getting results with this query. Is there another easy way to search a group of columns for a string?? Thanks in advance.
SELECT *
FROM
accounts
LEFT JOIN
advertisers ON (accounts.id = advertisers.account_id)
LEFT JOIN
publishers ON (accounts.id = publishers.account_id)
WHERE
CONCAT_WS(' ', company, address, city, region, country, zipcode, phone, advertisers.account_id, advertisers.account_manager_id, publishers.account_id, publishers.account_manager_id)
LIKE '%%paper%%'