CREATE TABLE `attendance` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`classId` varchar(3) NOT NULL,
`admissionId` varchar(
NOT NULL,
`nameWithInitials` varchar(100) DEFAULT NULL,
`Date` date DEFAULT NULL,
`status` tinyint(1) DEFAULT '1',
PRIMARY KEY (`id`);
My table is attendance. When I load the page I want only the details of a given date (not all the records available in the table), in the gridview in admin page. How do I get that. Thank u in advance!
`id` int(10) NOT NULL AUTO_INCREMENT,
`classId` varchar(3) NOT NULL,
`admissionId` varchar(
`nameWithInitials` varchar(100) DEFAULT NULL,
`Date` date DEFAULT NULL,
`status` tinyint(1) DEFAULT '1',
PRIMARY KEY (`id`);
My table is attendance. When I load the page I want only the details of a given date (not all the records available in the table), in the gridview in admin page. How do I get that. Thank u in advance!