I am using MY SQL when I pulled the informaiton before adding the CUSTOMER_2.dea_license which comes from the other table Customer_2 table everything pulled ok now when I tried to join the other table I get this error
Error: A syntax error has occurred. (State:37000, Native Code: FFFFFF37)
What is wrong?
SELECT
CUSTOMER.cust_num,
CUSTOMER.org_code,
CUSTOMER.cust_name,
case when CUSTOMER.stat='P' then 'AC'else 'IA' end status,
CUSTOMER.address1,
CUSTOMER.address2,
CUSTOMER.city,
CUSTOMER.province,
CUSTOMER.postal_code as zip,
CUSTOMER.phone,
CUSTOMER.fax,
CUSTOMER_2.dea_license
FROM CUSTOMER
INNER JOIN ON CUSTOMER.CUST_NUM=CUSTOMER_2.CUST_NUM