Reputation: 88
I really dont know why this statement isnt working with mysql... do you have any idea? Am I blind?
Error Message:
INSERT INTO companies (companies.firmname, companies.city, companies.state, companies.zip, companies.country, companies.address1, companies.address2 VALUES ('Wampanoag Country Club', 'West Hartford', 'CT', '', '1', '', '')
Upvotes: 0
Views: 28
Reputation: 655
Missing a closing )
INSERT INTO companies
(
companies.firmname,
companies.city,
companies.state,
companies.zip,
companies.country,
companies.address1,
companies.address2
) <-- need this
VALUES
(
'Wampanoag Country Club',
'West Hartford',
'CT',
'',
'1',
'',
''
)
Upvotes: 1
Reputation: 482
You are missing a closing ) after companies.address2 and before VALUES
Upvotes: 1