Step 1 : Create SQL Server table and insert menu data Create table tblMenu ( Id int primary key identity, MenuText nvarchar(30), ParentId int foreign key references tblMenu(Id), Active bit ) Go Insert into tblMenu values('USA', NULL, 1) Insert into tblMenu values('India', NULL, 1) Insert into tblMenu values('UK', NULL, 1) Insert into tblMenu values('Australia', NULL, 1) Insert into tblMenu values('Virginia', 1, 1) Insert into tblMenu values('Maryland', 1, 1) Insert into tblMenu values('AP', 2, 1) Insert into tblMenu values('MP', 2, 1) Insert into tblMenu...
The Joint Entrance Examination (JEE) is an Indian engineering entrance assessment conducted for admission of students to engineering colleges across the country. There are two different JEE examinations: JEE Main and JEE Advanced.
ReplyDeletejee main