Common query for both create and update contact. While doing an updation for a field:- An exception occurred while executing
INSERT INTO contact_table
SET id = '1234',
is_stealth_mode = 1
ON DUPLICATE KEY UPDATE
id = LAST_INSERT_ID( id ),
is_stealth_mode = VALUES(is_stealth_mode)
General error: 1364 Field 'club_id' doesn't have a default value
contact_table has a field club_id which has default value none and not nullable
strict mode is enabled
contact_table already has value id = '1234' and 'club_id' = 123
"contact_table has a field club_id which has default value none and not nullable"
From your above statement, is it means that club_id doesn't have default value or it's default value is 'NONE'. It seems to be club_id is not nullable and you should provide that value in the query.