CREATE TABLE Patient (
  Patient_id INT PRIMARY KEY,
  First_name VARCHAR(20),
  Last_name VARCHAR(20),
  Age INT,
  Registration_date DATE,
  Sex VARCHAR(1),
  Adress VARCHAR(25),
  Blood_group VARCHAR(5),
  Doctor_id INT,
  Branch_id INT
 );
This is my table
INSERT INTO Patient VALUES (600, 'Hasib' , 'Ahmad' , 24 , 2019-09-17 ,'M', '187,Mainland', 'B +ve',NULL,NULL);
This is my insertion but I am getting error showing ER_WRONG_VALUE_COUNT_ON_ROW: Column count doesn't match value count at row 1. Help me get rid of it.