I have a table
CREATE TABLE user (
user_id INT,
user_name VARCHAR(100),
CONSTRAINT pk_user_id PRIMARY KEY (user_id)
);
How can I bypass the constraint and add a new user with NULL
id?
INSERT INTO user (user_id, user_name) VALUES (NULL, 'John');
Would this be at all possible? Maybe there is some hack or something.