Hello. Learning SQL with an example from NetBeans ConsultingAgency Tutorial. The script gives an error
CREATE TABLE recruiter ( recruiter_id INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY, email VARCHAR(50) NOT NULL, password VARCHAR(50) NOT NULL, client_name VARCHAR(50), client_department_number SMALLINT, CONSTRAINT recruiter_pk PRIMARY KEY ( recruiter_id ) ); Error code 1064, SQL position 42000: You have an error in your SQL syntax; Check out the manual for the right syntax to use for your email address. VARCHAR (50) NOT NULL, password
Tell me, please, what is wrong?