I got an issue that i want to drop the default date that the AddedDate_in_Ward generate, i tried to remove it using (Alter), but it says that i have an incorrect syntax near of my columns name. any help please
CREATE TABLE In_patient(
inPatient_id INT primary key not null,
Patient_id INT REFERENCES Patient(Patient_id),
Ward_required Varchar(15),
AddedDate_to_waitng_list Date,
AddedDate_in_Ward Date,
Expected_leave_date Date,
Actual_leave_date Date,
);
ALTER TABLE In_patient
ALTER AddedDate_in_Ward DROP DEFAULT;