I'm trying to join two tables based on two values being alike. I have this so far but I'm getting a SQL error as soon as I use the %
.
SELECT downloads.d_key, payer_email
FROM paypal_log
INNER JOIN
downloads
ON downloads.d_key LIKE "%" + paypal_log.custom + "%"
The downloads.d_key
will be within the paypal_log.custom
.