create table student( student_ID int identity (1,1) primary key , student_Name nvarchar (15), course_ID nvarchar (15) foreign key , contact int unique , email nvarchar check (@), );
correct this