-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Jun 21, 2026 at 12:43 AM
-- Server version: 10.11.17-MariaDB-cll-lve
-- PHP Version: 8.4.21

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `ymairig2_albayanacademy`
--

-- --------------------------------------------------------

--
-- Table structure for table `attendance`
--

CREATE TABLE `attendance` (
  `id` int(11) NOT NULL,
  `admission_no` varchar(20) DEFAULT NULL,
  `date` date DEFAULT NULL,
  `status` enum('Present','Absent') DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `classes`
--

CREATE TABLE `classes` (
  `id` int(11) NOT NULL,
  `class_name` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `classes`
--

INSERT INTO `classes` (`id`, `class_name`) VALUES
(5, 'Primary 1'),
(6, 'Primary 2'),
(7, 'Primary 3'),
(8, 'Primary 4'),
(9, 'Primary 5'),
(10, 'Primary 6'),
(11, 'Nursery 1'),
(12, 'Nursery 2'),
(13, 'Nursery 3'),
(15, 'Graduate');

-- --------------------------------------------------------

--
-- Table structure for table `class_subjects`
--

CREATE TABLE `class_subjects` (
  `id` int(11) NOT NULL,
  `class_id` int(11) NOT NULL,
  `subject_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `events`
--

CREATE TABLE `events` (
  `id` int(11) NOT NULL,
  `title` varchar(200) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `event_date` date DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `logins`
--

CREATE TABLE `logins` (
  `id` int(11) NOT NULL,
  `admission_no` varchar(20) DEFAULT NULL,
  `username` varchar(100) DEFAULT NULL,
  `password` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `management`
--

CREATE TABLE `management` (
  `id` int(11) NOT NULL,
  `head_name` varchar(255) DEFAULT NULL,
  `head_signature` varchar(255) DEFAULT NULL,
  `hnote` text DEFAULT NULL,
  `stamp_image` varchar(255) DEFAULT NULL,
  `next_term_date` date DEFAULT NULL,
  `mnote` text DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `management`
--

INSERT INTO `management` (`id`, `head_name`, `head_signature`, `hnote`, `stamp_image`, `next_term_date`, `mnote`, `updated_at`) VALUES
(1, 'Bashir Yusuf Adamu', '1780668512_head_IMG_20251117_093851_947~2 (1).png', NULL, '1776836507_stamp_1763370973_stamp_IMG_20251117_094726_860~2 (2).jpg', '2026-04-20', 'We appreciate parents’ support. Ensure pupils prepare well for next term.', '2026-06-05 14:08:32'),
(2, NULL, NULL, NULL, NULL, NULL, 'School will resume on 15th January 2026. All students must be in uniform by the first day. Important orientation for new students on resumption day.', '2025-11-07 10:03:03');

-- --------------------------------------------------------

--
-- Table structure for table `messages`
--

CREATE TABLE `messages` (
  `id` int(11) NOT NULL,
  `sender_id` int(11) DEFAULT NULL,
  `receiver_id` int(11) DEFAULT NULL,
  `message` text DEFAULT NULL,
  `is_read` tinyint(4) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `messages`
--

INSERT INTO `messages` (`id`, `sender_id`, `receiver_id`, `message`, `is_read`, `created_at`) VALUES
(1, NULL, 1, 'Hi', 0, '2026-04-19 10:26:38');

-- --------------------------------------------------------

--
-- Table structure for table `news`
--

CREATE TABLE `news` (
  `id` int(11) NOT NULL,
  `title` varchar(200) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `body` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `parents`
--

CREATE TABLE `parents` (
  `id` int(11) NOT NULL,
  `full_name` varchar(150) NOT NULL,
  `phone` varchar(20) NOT NULL,
  `email` varchar(150) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `parents`
--

INSERT INTO `parents` (`id`, `full_name`, `phone`, `email`, `address`, `created_at`) VALUES
(1, 'Abdullahi Salisu', '08069500126', NULL, NULL, '2026-05-20 22:46:12'),
(2, 'Usman Abubakar Magaji', '07042404570', NULL, NULL, '2026-05-21 02:48:48'),
(3, 'Bashir Yusuf Adamu', '08060922001', NULL, NULL, '2026-05-20 22:46:12'),
(4, 'Takiyatu Abdullahi', '08132089637', NULL, NULL, '2026-05-20 22:46:12');

-- --------------------------------------------------------

--
-- Table structure for table `punctuality`
--

CREATE TABLE `punctuality` (
  `id` int(11) NOT NULL,
  `admission_number` varchar(50) NOT NULL,
  `term` varchar(50) NOT NULL,
  `session` varchar(9) NOT NULL,
  `appearance` varchar(100) DEFAULT NULL,
  `attendance_in_class` varchar(100) DEFAULT NULL,
  `relationship` varchar(100) DEFAULT NULL,
  `class_participation` varchar(100) DEFAULT NULL,
  `physical_activities` varchar(100) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `punctuality`
--

INSERT INTO `punctuality` (`id`, `admission_number`, `term`, `session`, `appearance`, `attendance_in_class`, `relationship`, `class_participation`, `physical_activities`, `created_at`) VALUES
(2, 'AL-B/2025/0181', 'Second Term', '', 'Very Good', 'Regular', 'Cooperative', 'Attentive', 'Good', '2025-11-07 04:13:40'),
(3, 'AL-B/2025/0181', 'Third Term', '', 'Good', 'Fairly Regular', 'Respectful', 'Average', 'Active', '2025-11-07 04:13:40'),
(6, 'AL-B/2025/0181', 'First Term', '2025/2026', '', '', '', '', '', '2025-11-11 01:08:06'),
(17, 'AL-B/2025/0181', 'First Term', '2025/2026', '', '', '', '', '', '2025-11-11 02:39:17'),
(31, 'AL-B/2025/0185', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2025-11-11 23:57:27'),
(32, 'AL-B/2025/0185', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2025-11-11 23:57:41'),
(34, 'AL-B/2025/0170', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2025-11-13 10:26:55'),
(35, 'AL-B/2025/0170', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2025-11-13 10:28:27'),
(36, 'AL-B/2025/0198', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2025-11-13 10:28:44'),
(37, 'AL-B/2025/0198', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2025-11-13 10:30:30'),
(38, 'AL-B/2025/0190', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2025-11-13 10:30:48'),
(39, 'AL-B/2025/0200', 'First Term', '2025/2026', 'D - Average', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'F - Very Poor', '2025-11-14 21:00:07'),
(40, 'AL-B/2025/0200', 'First Term', '2025/2026', 'D - Average', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'F - Very Poor', '2025-11-14 21:00:08'),
(42, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:17:48'),
(43, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:17:59'),
(44, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:18:05'),
(45, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:18:06'),
(46, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:18:07'),
(47, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:18:07'),
(48, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:18:07'),
(49, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:18:09'),
(50, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:18:10'),
(51, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:18:10'),
(52, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:18:10'),
(53, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:18:10'),
(54, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:18:11'),
(55, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:18:11'),
(56, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:18:11'),
(57, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:29:05'),
(58, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:29:18'),
(59, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:29:38'),
(60, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:29:49'),
(61, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:29:49'),
(62, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:29:49'),
(63, 'AL-B/2025/0007', 'First Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'D - Average', 'E - Poor', '2026-02-24 20:29:49'),
(64, 'AL-B/2025/0007', 'First Term', '2025/2026', 'D - Average', 'C - Good', 'E - Poor', 'E - Poor', 'F - Very Poor', '2026-02-24 20:39:25'),
(65, 'AL-B/2025/0007', 'First Term', '2025/2026', 'D - Average', 'C - Good', 'E - Poor', 'E - Poor', 'F - Very Poor', '2026-02-24 20:40:34'),
(66, 'AL-B/2025/0007', 'First Term', '2025/2026', 'D - Average', 'C - Good', 'E - Poor', 'E - Poor', 'F - Very Poor', '2026-02-24 20:40:34'),
(67, 'AL-B/2025/0007', 'First Term', '2025/2026', 'D - Average', 'C - Good', 'E - Poor', 'E - Poor', 'F - Very Poor', '2026-02-24 20:40:34'),
(68, 'AL-B/2025/0007', 'First Term', '2025/2026', 'D - Average', 'C - Good', 'E - Poor', 'E - Poor', 'F - Very Poor', '2026-02-24 20:40:34'),
(69, 'AL-B/2025/0007', 'First Term', '2025/2026', 'D - Average', 'C - Good', 'E - Poor', 'E - Poor', 'F - Very Poor', '2026-02-24 20:40:34'),
(70, 'AL-B/2025/0007', 'First Term', '2025/2026', 'D - Average', 'C - Good', 'E - Poor', 'E - Poor', 'F - Very Poor', '2026-02-24 20:40:38'),
(71, 'AL-B/2025/0181', 'First Term', '2025/2026', '', '', '', '', '', '2026-02-26 20:50:23'),
(73, 'AL-B/2025/0040', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-03-11 07:06:34'),
(77, 'AL-B/2025/0072', 'First Term', '2025/2026', 'C - Good', 'C - Good', 'C - Good', 'D - Average', 'C - Good', '2026-03-24 12:19:02'),
(78, 'AL-B/2025/0072', 'First Term', '2025/2026', 'C - Good', 'C - Good', 'C - Good', 'D - Average', 'C - Good', '2026-03-24 12:19:07'),
(79, 'AL-B/2025/0002', 'Second Term', '2025/2026', 'C - Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', '2026-03-25 07:54:29'),
(80, 'AL-B/2025/0002', 'Second Term', '2025/2026', 'C - Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', '2026-03-25 07:54:31'),
(81, 'AL-B/2025/0072', 'Second Term', '2025/2026', 'B - Very Good', 'C - Good', 'C - Good', 'C - Good', 'C - Good', '2026-03-25 07:55:22'),
(82, 'AL-B/2025/0072', 'Second Term', '2025/2026', 'B - Very Good', 'C - Good', 'C - Good', 'C - Good', 'C - Good', '2026-03-25 07:55:24'),
(83, 'AL-B/2025/0160', 'Second Term', '2025/2026', 'B - Very Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', '2026-03-26 08:13:22'),
(84, 'AL-B/2025/0197', 'Second Term', '2025/2026', 'B - Very Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', '2026-03-26 10:01:52'),
(85, 'AL-B/2025/0197', 'Second Term', '2025/2026', 'B - Very Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', '2026-03-26 10:01:54'),
(86, 'AL-B/2025/0081', 'Second Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'B - Very Good', 'C - Good', '2026-03-27 09:38:43'),
(87, 'AL-B/2025/0100', 'Second Term', '2025/2026', 'B - Very Good', 'A - Excellent', 'B - Very Good', 'B - Very Good', 'B - Very Good', '2026-03-27 09:58:09'),
(88, 'AL-B/2025/0100', 'Second Term', '2025/2026', 'B - Very Good', 'A - Excellent', 'B - Very Good', 'B - Very Good', 'B - Very Good', '2026-03-27 09:58:13'),
(89, 'AL-B/2025/0100', 'Second Term', '2025/2026', 'B - Very Good', 'A - Excellent', 'B - Very Good', 'B - Very Good', 'B - Very Good', '2026-03-27 09:58:21'),
(90, 'AL-B/2025/0100', 'Second Term', '2025/2026', 'B - Very Good', 'A - Excellent', 'B - Very Good', 'B - Very Good', 'B - Very Good', '2026-03-27 09:58:29'),
(91, 'AL-B/2025/0112', 'Second Term', '2025/2026', 'B - Very Good', 'B - Very Good', 'A - Excellent', 'B - Very Good', 'A - Excellent', '2026-03-27 10:00:04'),
(92, 'AL-B/2025/0112', 'Second Term', '2025/2026', 'B - Very Good', 'B - Very Good', 'A - Excellent', 'B - Very Good', 'A - Excellent', '2026-03-27 10:00:13'),
(93, 'AL-B/2025/0143', 'Second Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-03-27 10:04:08'),
(94, 'AL-B/2025/0040', 'Second Term', '2025/2026', 'B - Very Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', '2026-03-27 10:04:11'),
(95, 'AL-B/2025/0172', 'Second Term', '2025/2026', 'B - Very Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', '2026-03-27 10:04:47'),
(96, 'AL-B/2025/0173', 'Second Term', '2025/2026', 'B - Very Good', 'B - Very Good', 'B - Very Good', 'A - Excellent', 'B - Very Good', '2026-03-27 10:05:18'),
(97, 'AL-B/2025/0187', 'Second Term', '2025/2026', 'C - Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', '2026-03-27 10:06:24'),
(98, 'AL-B/2025/0162', 'Second Term', '2025/2026', 'B - Very Good', 'A - Excellent', 'B - Very Good', 'A - Excellent', 'B - Very Good', '2026-03-27 10:07:33'),
(99, 'AL-B/2025/0043', 'Second Term', '2025/2026', 'B - Very Good', 'A - Excellent', 'B - Very Good', 'A - Excellent', 'B - Very Good', '2026-03-27 10:07:52'),
(100, 'AL-B/2025/0143', 'Second Term', '2025/2026', 'B - Very Good', 'C - Good', 'B - Very Good', 'C - Good', 'B - Very Good', '2026-03-27 10:08:00'),
(101, 'AL-B/2025/0143', 'Second Term', '2025/2026', 'B - Very Good', 'C - Good', 'B - Very Good', 'C - Good', 'B - Very Good', '2026-03-27 10:08:01'),
(102, 'AL-B/2025/0143', 'Second Term', '2025/2026', 'B - Very Good', 'C - Good', 'B - Very Good', 'C - Good', 'B - Very Good', '2026-03-27 10:08:02'),
(103, 'AL-B/2025/0143', 'Second Term', '2025/2026', 'B - Very Good', 'C - Good', 'B - Very Good', 'C - Good', 'B - Very Good', '2026-03-27 10:08:03'),
(104, 'AL-B/2025/0143', 'Second Term', '2025/2026', 'B - Very Good', 'C - Good', 'B - Very Good', 'C - Good', 'B - Very Good', '2026-03-27 10:08:04'),
(105, 'AL-B/2025/0143', 'Second Term', '2025/2026', 'B - Very Good', 'C - Good', 'B - Very Good', 'C - Good', 'B - Very Good', '2026-03-27 10:08:06'),
(106, 'AL-B/2025/0143', 'Second Term', '2025/2026', 'B - Very Good', 'C - Good', 'B - Very Good', 'C - Good', 'B - Very Good', '2026-03-27 10:08:13'),
(107, 'AL-B/2025/0143', 'Second Term', '2025/2026', 'B - Very Good', 'C - Good', 'B - Very Good', 'C - Good', 'B - Very Good', '2026-03-27 10:08:14'),
(108, 'AL-B/2025/0143', 'Second Term', '2025/2026', 'B - Very Good', 'C - Good', 'B - Very Good', 'C - Good', 'B - Very Good', '2026-03-27 10:08:14'),
(109, 'AL-B/2025/0143', 'Second Term', '2025/2026', 'B - Very Good', 'C - Good', 'B - Very Good', 'C - Good', 'B - Very Good', '2026-03-27 10:08:16'),
(110, 'AL-B/2025/0155', 'Second Term', '2025/2026', 'B - Very Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', 'B - Very Good', '2026-03-27 10:08:30'),
(111, 'AL-B/2025/0007', 'Second Term', '2025/2026', 'B - Very Good', 'A - Excellent', 'B - Very Good', 'B - Very Good', 'B - Very Good', '2026-03-27 10:09:33'),
(112, 'AL-B/2025/0022', 'Second Term', '2025/2026', 'B - Very Good', 'A - Excellent', 'B - Very Good', 'B - Very Good', 'B - Very Good', '2026-03-27 10:10:38'),
(113, 'AL-B/2025/0081', 'Second Term', '2025/2026', 'C - Good', 'B - Very Good', 'C - Good', 'B - Very Good', 'C - Good', '2026-03-27 11:20:10'),
(119, 'AL-B/2025/0075', 'First Term', '2025/2026', 'C - Good', 'C - Good', 'C - Good', 'B - Very Good', 'C - Good', '2026-04-23 05:07:08'),
(120, 'AL-B/2025/0075', 'First Term', '2025/2026', 'C - Good', 'C - Good', 'C - Good', 'B - Very Good', 'C - Good', '2026-04-23 05:07:17'),
(121, 'AL-B/2025/0075', 'First Term', '2025/2026', 'C - Good', 'C - Good', 'C - Good', 'B - Very Good', 'C - Good', '2026-04-23 05:16:01'),
(122, 'AL-B/2025/0075', 'First Term', '2025/2026', 'C - Good', 'C - Good', 'C - Good', 'B - Very Good', 'C - Good', '2026-04-23 05:16:10'),
(123, 'AL-B/2025/0075', 'First Term', '2025/2026', 'C - Good', 'C - Good', 'C - Good', 'B - Very Good', 'C - Good', '2026-04-23 05:16:11'),
(124, 'AL-B/2025/0075', 'First Term', '2025/2026', 'C - Good', 'C - Good', 'C - Good', 'B - Very Good', 'C - Good', '2026-04-23 07:53:51'),
(125, 'AL-B/2025/0159', 'First Term', '2025/2026', 'B - Very Good', 'C - Good', 'D - Average', 'C - Good', 'D - Average', '2026-04-23 08:25:14'),
(126, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 09:17:19'),
(127, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 09:17:23'),
(128, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 09:18:25'),
(129, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 09:19:13'),
(130, 'AL-B/2025/0161', 'First Term', '2025/2026', 'B - Very Good', 'B - Very Good', 'D - Average', 'A - Excellent', 'B - Very Good', '2026-04-23 09:19:28'),
(131, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 09:21:26'),
(132, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 09:22:56'),
(133, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 09:23:01'),
(134, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 09:23:04'),
(135, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 09:23:04'),
(136, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 09:23:04'),
(137, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 09:23:04'),
(138, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 09:23:04'),
(139, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 09:23:05'),
(140, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 09:23:05'),
(141, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 09:23:05'),
(142, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 09:23:05'),
(143, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 09:23:06'),
(144, 'AL-B/2025/0168', 'First Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-04-23 18:08:26'),
(145, 'AL-B/2025/0191', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-09 12:29:07'),
(146, 'AL-B/2025/0191', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-09 12:35:12'),
(147, 'AL-B/2025/0191', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-09 12:35:52'),
(148, 'AL-B/2025/0191', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-09 12:36:03'),
(149, 'AL-B/2025/0200', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-19 08:28:19'),
(150, 'AL-B/2025/0200', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-19 08:29:16'),
(151, 'AL-B/2025/0180', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-20 23:31:04'),
(152, 'AL-B/2025/0114', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-21 02:52:58'),
(153, 'AL-B/2025/0180', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-21 03:01:03'),
(154, 'AL-B/2025/0114', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-21 03:01:36'),
(155, 'AL-B/2025/0180', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-21 08:51:51'),
(156, 'AL-B/2025/0114', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-21 08:57:03'),
(157, 'AL-B/2025/0180', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-21 08:57:19'),
(158, 'AL-B/2025/0191', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-21 09:00:44'),
(159, 'AL-B/2025/0151', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-21 09:11:41'),
(160, 'AL-B/2025/0002', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-21 09:20:17'),
(161, 'AL-B/2025/0116', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-22 05:42:18'),
(162, 'AL-B/2025/0110', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-22 05:42:38'),
(163, 'AL-B/2025/0151', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-22 05:43:16'),
(164, 'AL-B/2025/0114', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-22 05:43:35'),
(165, 'AL-B/2025/0002', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-22 05:44:03'),
(166, 'AL-B/2025/0116', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-22 07:40:50'),
(167, 'AL-B/2025/0116', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-22 07:40:55'),
(168, 'AL-B/2025/0116', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-22 07:49:36'),
(169, 'AL-B/2025/0116', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-23 16:37:58'),
(170, 'AL-B/2025/0116', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-23 16:38:58'),
(171, 'AL-B/2025/0110', 'First Term', '2026/2027', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-23 16:40:57'),
(172, 'AL-B/2025/0116', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-23 22:40:49'),
(173, 'AL-B/2025/0199', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-23 22:46:16'),
(174, 'AL-B/2025/0199', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-23 22:46:23'),
(175, 'AL-B/2025/0092', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-05-23 22:51:16'),
(176, 'AL-B/2025/0116', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-06-03 07:24:39'),
(177, 'AL-B/2025/0114', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-06-03 07:26:33'),
(178, 'AL-B/2025/0110', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-06-03 07:26:47'),
(179, 'AL-B/2025/0002', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-06-03 07:27:03'),
(180, 'AL-B/2025/0151', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-06-03 07:27:37'),
(181, 'AL-B/2025/0092', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-06-03 07:29:43'),
(182, 'AL-B/2025/0110', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-06-07 12:57:16'),
(183, 'AL-B/2025/0110', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-06-07 16:10:42'),
(184, 'AL-B/2025/0116', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-06-14 23:48:18'),
(185, 'AL-B/2025/0116', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-06-14 23:54:33'),
(186, 'AL-B/2025/0191', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-06-15 22:25:36'),
(187, 'AL-B/2025/0191', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-06-15 22:28:48'),
(188, 'AL-B/2025/0191', 'Third Term', '2025/2026', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', 'A - Excellent', '2026-06-15 22:54:09');

-- --------------------------------------------------------

--
-- Table structure for table `questions`
--

CREATE TABLE `questions` (
  `id` int(11) NOT NULL,
  `class_id` int(11) NOT NULL,
  `subject_id` int(11) NOT NULL,
  `teacher_id` int(11) NOT NULL,
  `term` varchar(20) NOT NULL,
  `session` varchar(20) NOT NULL,
  `question` text NOT NULL,
  `option_a` varchar(255) NOT NULL,
  `option_b` varchar(255) NOT NULL,
  `option_c` varchar(255) NOT NULL,
  `correct_option` enum('A','B','C') NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `question_type` varchar(20) DEFAULT 'objective',
  `question_image` varchar(255) DEFAULT NULL,
  `marks` int(11) DEFAULT 1,
  `instruction` text DEFAULT NULL,
  `sample_answer` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `questions`
--

INSERT INTO `questions` (`id`, `class_id`, `subject_id`, `teacher_id`, `term`, `session`, `question`, `option_a`, `option_b`, `option_c`, `correct_option`, `created_at`, `question_type`, `question_image`, `marks`, `instruction`, `sample_answer`) VALUES
(1, 5, 1, 16, 'Third Term', '2025/2026', 'How many vowels sound do we have', '3', '5', '6', 'A', '2026-05-09 08:26:42', 'objective', NULL, 1, '', ''),
(13, 5, 1, 6, 'Third Term', '2025/2026', 'English language is the study and use of english language for communication through speaking, reading, writing and listining.....?', 'Yes', 'No', 'All of the above', 'A', '2026-05-12 10:28:12', 'objective', NULL, 1, NULL, NULL),
(14, 5, 1, 6, 'Third Term', '2025/2026', '#K______This symbols represent......?', 'Naira and naira', 'Naira and kobo', 'Naira', 'B', '2026-05-12 10:40:53', 'objective', NULL, 1, NULL, NULL),
(15, 5, 1, 6, 'Third Term', '2025/2026', '& _______This symbol means .....?', 'And', 'Percent', 'Equal to', 'A', '2026-05-12 10:45:09', 'objective', NULL, 1, NULL, NULL),
(16, 5, 1, 6, 'Third Term', '2025/2026', 'My name is miss ........?', 'Franca', 'Nana', 'Mary', 'A', '2026-05-12 10:47:15', 'objective', NULL, 1, NULL, NULL),
(17, 5, 6, 6, 'Third Term', '2025/2026', 'A calculator is a ........ device ..?', 'Machine device', 'Electronic device', 'Arithmetic device', 'A', '2026-05-14 08:33:56', 'objective', NULL, 1, '', ''),
(18, 5, 6, 6, 'Third Term', '2025/2026', 'Calculator works like a ..........?', 'Computer', 'machine', 'Typewriter', 'A', '2026-05-14 08:37:43', 'objective', NULL, 1, NULL, NULL),
(19, 5, 6, 6, 'Third Term', '2025/2026', '.......is use to drown and point an object on the monitor.?', 'Speaker', 'mouse', 'printer', 'B', '2026-05-14 09:22:33', 'objective', NULL, 1, NULL, NULL),
(20, 5, 6, 6, 'Third Term', '2025/2026', 'Speaker help us to listen to ........?', '', '', '', 'A', '2026-05-14 09:29:50', 'objective', NULL, NULL, '', ''),
(21, 5, 6, 6, 'Third Term', '2025/2026', 'System unit is the brain of the .............?', 'Computer', 'keyboard', 'machine', 'A', '2026-05-14 09:33:22', 'objective', NULL, 1, NULL, NULL),
(22, 5, 6, 6, 'Third Term', '2025/2026', '......... can be used to send and receive messages.?', 'Gsm or mobile phone', 'Electronic orgernizer', 'Information', 'A', '2026-05-14 09:33:55', 'objective', NULL, 1, NULL, NULL),
(30, 13, 15, 5, 'Third Term', '2025/2026', '..... Lives in water..?', 'Fish', 'Cow', 'Man', 'A', '2026-05-18 08:00:00', 'objective', NULL, 1, NULL, NULL),
(31, 13, 15, 5, 'Third Term', '2025/2026', 'Some plants and animals live in water...?', 'Yes', 'No', 'All of the above', 'A', '2026-05-18 08:00:40', 'objective', NULL, 1, NULL, NULL),
(32, 13, 15, 5, 'Third Term', '2025/2026', 'We use water for making tea..?', 'No', 'Yes', 'All of the above', 'B', '2026-05-18 08:01:08', 'objective', NULL, 1, NULL, NULL),
(33, 5, 8, 6, 'Third Term', '2025/2026', 'Mathematics is the study of..........?', 'Numbers, shapes, calculation and patterns', 'Numbers and letters', 'Calculation and subjects', 'A', '2026-05-18 08:03:18', 'objective', NULL, 1, NULL, NULL),
(34, 5, 8, 6, 'Third Term', '2025/2026', 'We used mathematics to solve......?', 'Problem', 'Exam', 'Basic science', 'A', '2026-05-18 08:06:23', 'objective', NULL, 1, NULL, NULL),
(35, 5, 8, 6, 'Third Term', '2025/2026', 'Addition of numbers.\r\n\r\n1. 🌿🌿🌿🌿🌿 + 🌿🌿🌿 = ...?', '9 🌿', '8 🌿', '5 🌿', 'B', '2026-05-18 08:15:56', 'objective', NULL, 1, NULL, NULL),
(36, 5, 8, 6, 'Third Term', '2025/2026', '5 + 10 =', '15', '17', '25', 'A', '2026-05-18 08:18:04', 'objective', NULL, 1, NULL, NULL),
(37, 5, 8, 6, 'Third Term', '2025/2026', '🍎🍎🍎🍎🍎🍎🍎🍎🍎🍎 + 🍎🍎🍎 =', '13 🍎', '23 🍎', '33 🍎', 'A', '2026-05-18 08:20:36', 'objective', NULL, 1, NULL, NULL),
(38, 5, 8, 6, 'Third Term', '2025/2026', '8 + 2 =', '11', '10', '82', 'B', '2026-05-18 08:23:03', 'objective', NULL, 1, NULL, NULL),
(43, 5, 7, 6, 'Third Term', '2025/2026', 'The boy is feeling  ', 'Cold', 'Maleria', 'Bad', 'A', '2026-05-19 09:56:10', 'objective', '0', 1, 'Illness is a condition of feeling well in our............', ''),
(44, 5, 7, 6, 'Third Term', '2025/2026', 'When some body is ill,he or she will not be able to........', 'Eat', 'Eat well', 'Eat bad', 'B', '2026-05-19 09:56:11', 'objective', '0', 1, 'Illness is a condition of feeling well in our............', ''),
(45, 13, 15, 5, 'Third Term', '2025/2026', 'What helps the paper kite to fly..?', 'Sun', 'Air', 'Clay', 'B', '2026-05-19 10:31:40', 'objective', '0', 10, '', ''),
(46, 13, 15, 5, 'Third Term', '2025/2026', 'What are the three objects that can float on water..?', 'Football, paper boat, dry leaf', 'Nail, coin, stone', 'None of the above', 'A', '2026-05-19 10:33:37', 'objective', '0', 10, '', ''),
(47, 13, 15, 5, 'Third Term', '2025/2026', 'Baby plants are called...?', 'Seedlings', 'Babies', 'Nose', 'A', '2026-05-19 10:34:29', 'objective', '0', 10, '', ''),
(52, 13, 16, 5, 'Third Term', '2025/2026', 'Which of these is a mode of water..?', 'Car', 'Boat', 'Aeroplane', 'B', '2026-05-20 08:40:29', 'objective', '0', 10, '', ''),
(53, 5, 5, 6, 'Third Term', '2025/2026', 'Islam is a religion of.........', 'Cleanleness', 'Needness', 'Practised', 'A', '2026-05-20 08:41:10', 'objective', '0', 6, '', ''),
(54, 5, 5, 6, 'Third Term', '2025/2026', 'We should obey our......', 'Animals', 'Parents', 'Daddys', 'B', '2026-05-20 08:44:09', 'objective', '0', 6, '', ''),
(55, 13, 16, 5, 'Third Term', '2025/2026', 'Which among this is the fastest means of transportation..?', 'Aeroplane', 'Bus', 'Truck', 'A', '2026-05-20 08:48:52', 'objective', '0', 10, '', ''),
(56, 13, 16, 5, 'Third Term', '2025/2026', 'Drug abuse can damage your brain..?', 'Yes', 'No', 'None of the above', 'A', '2026-05-20 08:50:01', 'objective', '0', 10, '', ''),
(57, 5, 5, 6, 'Third Term', '2025/2026', 'When we are .......... they take care of us', 'Sick', 'Bad', 'Good', 'A', '2026-05-20 08:50:20', 'objective', '0', 6, '', ''),
(58, 5, 5, 6, 'Third Term', '2025/2026', 'Allah give us food', 'Yes', 'No', 'All of the above', 'A', '2026-05-20 08:52:32', 'objective', '0', 6, '', ''),
(59, 13, 16, 5, 'Third Term', '2025/2026', '.....  Are food items from animals..?', 'Soil', 'Meat', 'Grain', 'B', '2026-05-20 08:53:45', 'objective', '0', 10, '', ''),
(60, 13, 16, 5, 'Third Term', '2025/2026', 'Soil is used for farming..?', 'No', 'Yes', 'None of the above', 'B', '2026-05-20 08:55:20', 'objective', '0', 10, '', ''),
(61, 5, 5, 6, 'Third Term', '2025/2026', 'Allah sends down rain for our....', 'Support', 'Crops', 'Live', 'B', '2026-05-20 08:55:42', 'objective', '0', 6, '', ''),
(62, 13, 16, 5, 'Third Term', '2025/2026', 'How many colors does your national flag has..?', '2', '3', '5', 'B', '2026-05-20 09:00:46', 'objective', '0', 10, '', ''),
(63, 5, 5, 6, 'Third Term', '2025/2026', 'Prophet Muhammad brought .......', 'Unity', 'Sadness', 'Happily', 'A', '2026-05-20 09:02:03', 'objective', '0', 6, '', ''),
(64, 5, 5, 6, 'Third Term', '2025/2026', 'Step of performing ablution.                Step.1 get......', 'Clean water', 'Face the qiblah', 'Wash your hand', 'A', '2026-05-20 09:06:40', 'objective', '0', 6, '', ''),
(65, 5, 5, 6, 'Third Term', '2025/2026', 'Mention three (3) first prophets of Allah mention in the Qur\'an.', '', '', '', 'A', '2026-05-20 09:13:37', 'essay', '0', 6, '', '1. \r\n2. \r\n3.'),
(66, 5, 8, 6, 'Third Term', '2025/2026', 'Multiplication tables.                      2 x 1 =', '', '', '', 'A', '2026-05-21 07:25:59', 'theory', '0', 6, '', ''),
(67, 5, 8, 6, 'Third Term', '2025/2026', '2 x 2 =', '', '', '', 'A', '2026-05-21 07:27:27', 'theory', '0', 6, '', ''),
(68, 5, 8, 6, 'Third Term', '2025/2026', '2 x 3 =', '', '', '', 'A', '2026-05-21 07:30:09', 'theory', '0', 6, '', ''),
(69, 5, 8, 6, 'Third Term', '2025/2026', '2 x 4 =', '', '', '', 'A', '2026-05-21 07:31:16', 'theory', '0', 6, '', ''),
(73, 6, 7, 5, 'Third Term', '2025/2026', 'Refuse is refers to waste materials that are no longer needed..?', 'True', 'False', 'All of the above', 'A', '2026-05-23 15:55:42', 'objective', '0', 6, '', ''),
(74, 6, 7, 5, 'Third Term', '2025/2026', '... Helps us to live with fellow human beings in peace..?', 'Ignorance', 'Religion', 'All of the above', 'B', '2026-05-23 15:57:49', 'objective', '0', 6, '', ''),
(75, 6, 7, 5, 'Third Term', '2025/2026', 'Shrine is a place where traditional worshippers worship..?', 'True', 'False', 'None of the above', 'A', '2026-05-23 15:59:33', 'objective', '0', 6, '', ''),
(76, 6, 7, 5, 'Third Term', '2025/2026', '... Is a bad event that happens suddenly and it could lead to injury, damage or death..?', 'Marriage', 'Accident', 'Culture', 'B', '2026-05-23 16:01:39', 'objective', '0', 6, '', ''),
(77, 6, 7, 5, 'Third Term', '2025/2026', 'Home appliances are the equipment been used to do a particular job..?', 'True', 'False', 'None of the above', 'A', '2026-05-23 16:03:22', 'objective', '0', 6, '', ''),
(78, 6, 7, 5, 'Third Term', '2025/2026', '..... Is one in which it\'s members do things together..?', 'United family', 'Corrupt family', 'Conflict', 'A', '2026-05-23 16:05:10', 'objective', '0', 6, '', ''),
(79, 6, 7, 5, 'Third Term', '2025/2026', 'Iron and stove are examples of home appliances..?', 'True', 'False', 'All of the above', 'A', '2026-05-23 16:06:23', 'objective', '0', 6, '', ''),
(80, 6, 7, 5, 'Third Term', '2025/2026', 'There are ..... types of refuse..?', '2', '4', '3', 'A', '2026-05-23 16:07:40', 'objective', '0', 6, '', ''),
(81, 6, 7, 5, 'Third Term', '2025/2026', 'Electric cooker is used for....?', 'Playing', 'Cooking', 'Listening', 'B', '2026-05-23 16:08:44', 'objective', '0', 6, '', ''),
(82, 6, 7, 5, 'Third Term', '2025/2026', 'What is your name..?', '', '', '', 'A', '2026-05-23 16:11:06', 'essay', '0', 6, '', ''),
(83, 6, 3, 5, 'Third Term', '2025/2026', '..... Is made up of a group of people..?', 'Well', 'Community', 'Stones', 'B', '2026-05-23 16:12:29', 'objective', '0', 6, '', ''),
(84, 6, 3, 5, 'Third Term', '2025/2026', 'A good example of a community rules is to keep the environment clean..?', 'True', 'False', 'None of the above', 'A', '2026-05-23 16:14:50', 'objective', '0', 6, '', ''),
(85, 6, 3, 5, 'Third Term', '2025/2026', 'Members who live together have rules and regulations..?', 'True', 'False', 'None of the above', 'A', '2026-05-23 16:15:58', 'objective', '0', 6, '', ''),
(86, 6, 3, 5, 'Third Term', '2025/2026', 'Rules are made to promote orderliness, cooperation and happiness..?', 'True', 'False', 'All of the above', 'A', '2026-05-23 16:17:28', 'objective', '0', 6, '', ''),
(87, 6, 3, 5, 'Third Term', '2025/2026', 'Modern toilet are mostly found in.....?', 'Village', 'Cities', 'None of the above', 'B', '2026-05-23 16:18:55', 'objective', '0', 6, '', ''),
(88, 6, 3, 5, 'Third Term', '2025/2026', 'The following are rules and regulations in school except....?', 'Stealing', 'Been polite', 'Obey the teachers', 'A', '2026-05-23 16:20:44', 'objective', '0', 6, '', ''),
(89, 6, 3, 5, 'Third Term', '2025/2026', 'Sweeping and cleaning the house regularly are ways to keep our surroundings clean..?', 'True', 'False', 'None of the above', 'A', '2026-05-23 16:27:28', 'objective', '0', 6, '', ''),
(90, 6, 3, 5, 'Third Term', '2025/2026', 'There are ..... types of toilet..?', '3', '2', '4', 'A', '2026-05-23 16:29:12', 'objective', '0', 6, '', ''),
(91, 6, 3, 5, 'Third Term', '2025/2026', 'Flushing the toilet after every use are ways of keeping modern toilets clean..?', 'True', 'False', 'None of the above', 'A', '2026-05-23 16:31:28', 'objective', '0', 6, '', ''),
(92, 6, 3, 5, 'Third Term', '2025/2026', 'The following are qualities of community leaders except..?', 'Honest', 'Patient', 'Cheating', 'C', '2026-05-23 16:33:02', 'objective', '0', 6, '', ''),
(97, 9, 8, 5, 'Third Term', '2025/2026', 'Hi', '', '', '', 'A', '2026-05-30 00:13:55', 'objective', '0', 1, '', ''),
(98, 9, 8, 5, 'Third Term', '2025/2026', 'Hi', '', '', '', 'A', '2026-05-30 00:16:38', 'objective', '0', 1, '', ''),
(106, 5, 3, 6, 'Third Term', '2025/2026', 'Road safety means using the ......carefully to prevent accident', 'Road', 'Safety', 'Accident', 'A', '2026-06-01 09:39:49', 'objective', '', 6, '', ''),
(107, 5, 3, 6, 'Third Term', '2025/2026', 'Do not ............ on the road', 'Run', 'Go', 'Stay', 'A', '2026-06-01 09:42:47', 'objective', '', 6, '', ''),
(108, 5, 3, 6, 'Third Term', '2025/2026', 'Look left and right and left again be fore......', 'Sitting', 'Crossing', 'Going', 'B', '2026-06-01 09:46:18', 'objective', '', 6, '', ''),
(109, 5, 3, 6, 'Third Term', '2025/2026', '........is the study that teach people about their rights', 'Mathematics', 'Civic education', 'Social studies', 'B', '2026-06-01 09:50:38', 'objective', '', 6, '', ''),
(110, 5, 3, 6, 'Third Term', '2025/2026', 'And how to be good citizens in......', 'Society', 'Civic education', 'Ability', 'A', '2026-06-01 09:54:18', 'objective', '', 6, '', ''),
(112, 5, 1, 6, 'Third Term', '2025/2026', 'We have 21 ..........', 'Consonants', 'Alphabet', 'Vowels sound', 'A', '2026-06-01 10:36:08', 'objective', '', 6, '', ''),
(113, 11, 1, 6, 'Third Term', '2025/2026', 'Write your full name', '', '', '', 'A', '2026-06-01 10:37:21', 'essay', '', 1, '', ''),
(114, 13, 1, 5, 'Third Term', '2025/2026', 'How many colors make up a rainbow..?', '7', '2', '5', 'A', '2026-06-02 09:50:33', 'objective', '', 10, '', ''),
(115, 13, 1, 5, 'Third Term', '2025/2026', 'Why did mrs ojo stay at home..?', 'To cook for Yusuf', 'To play at home', 'To read books', 'A', '2026-06-02 09:54:24', 'objective', '', 10, '', ''),
(116, 13, 1, 5, 'Third Term', '2025/2026', 'The day after friday is ...?', 'Saturday', 'Monday', 'Sunday', 'A', '2026-06-03 06:59:53', 'objective', '', 10, '', ''),
(117, 13, 1, 5, 'Third Term', '2025/2026', 'The sick people are treated in the ...?', 'Mosque', 'Church', 'Hospital', 'C', '2026-06-03 07:00:57', 'objective', '', 1, '', ''),
(118, 13, 1, 5, 'Third Term', '2025/2026', 'You must look left and right before crossing the road..?', 'Yes', 'No', 'None of the above', 'A', '2026-06-03 07:02:38', 'objective', '', 10, '', ''),
(119, 13, 11, 5, 'Third Term', '2025/2026', 'How many states do we have in Nigeria..?', '50', '37', '10', 'B', '2026-06-03 07:05:34', 'objective', '', 10, '', ''),
(120, 13, 11, 5, 'Third Term', '2025/2026', 'The color of Nigeria flag is .... And ....?', 'Green white green', 'Black and white', 'Red and orange', 'A', '2026-06-03 07:07:25', 'objective', '', 10, '', ''),
(121, 13, 11, 5, 'Third Term', '2025/2026', 'How many local government do we have in plateau state..?', '5', '17', '8', 'B', '2026-06-03 07:08:24', 'objective', '', 10, '', ''),
(122, 13, 11, 5, 'Third Term', '2025/2026', 'We have two types of family..?', 'Yes', 'No', 'None of the above', 'A', '2026-06-03 07:09:17', 'objective', '', 10, '', ''),
(123, 13, 11, 5, 'Third Term', '2025/2026', 'Father is the head of the family..?', 'Yes', 'No', 'All of the above', 'A', '2026-06-03 07:10:04', 'objective', '', 10, '', ''),
(124, 13, 11, 5, 'Third Term', '2025/2026', 'Father is the head of the house..?', 'Yes', 'No', 'None of the above', 'A', '2026-06-03 07:11:36', 'objective', '', 10, '', ''),
(125, 13, 12, 5, 'Third Term', '2025/2026', 'PU + T =', '', '', '', 'A', '2026-06-03 07:13:01', 'essay', '', 10, '', ''),
(126, 13, 12, 5, 'Third Term', '2025/2026', 'How many objects do we have ⚽⚽⚽⚽⚽..?', '5', '2', '1', 'A', '2026-06-03 07:14:24', 'objective', '', 10, '', ''),
(127, 13, 12, 5, 'Third Term', '2025/2026', 'Nnamdi Azikwe was the Nigeria first ...?', 'President', 'Senator', 'Chairman', 'A', '2026-06-03 07:15:57', 'objective', '', 10, '', ''),
(128, 13, 12, 5, 'Third Term', '2025/2026', 'Who is the governor of plateau state..?', 'Bar, Caleb Manasse Mutfwang', 'Bar, Simon Bako Lalong', 'Dr. John Sule', 'A', '2026-06-03 07:17:48', 'objective', '', 10, '', ''),
(129, 13, 12, 5, 'Third Term', '2025/2026', 'CA + T =', '', '', '', 'A', '2026-06-03 07:18:27', 'essay', '', 10, '', ''),
(130, 13, 12, 5, 'Third Term', '2025/2026', 'Monkey has a long tail...?', 'Yes', 'No', 'All of the above', 'A', '2026-06-03 07:19:22', 'objective', '', 10, '', ''),
(131, 13, 17, 5, 'Third Term', '2025/2026', 'I like Rice and i like Meat, it is what i like to eat i don\'t like Moi-Moi and i don\'t like Eba, it is Rice and Meat i eat and eat.', '', '', '', 'A', '2026-06-03 07:22:32', 'essay', '', 60, '', ''),
(132, 13, 1, 5, 'Third Term', '2025/2026', 'A noun is a name of a person, animal place or ....?', 'Thing', 'Cat', 'Ruller', 'A', '2026-06-03 08:25:39', 'objective', '', 10, '', ''),
(133, 9, 2, 5, 'Third Term', '2027/2028', 'Find the missing alphabet', '', '', '', 'A', '2026-06-03 09:16:41', 'essay', '', 1, 'Fill in the blank spaces with correct answer', 'G_____ood\r\nB_____ad\r\nS_____hool'),
(135, 5, 1, 5, 'Third Term', '2025/2026', 'How many alphabet do we have in English language', '26', '16', '10', 'A', '2026-06-03 19:16:45', 'objective', '', 6, '', '1 ............... 2 ............... 3 ............... 4 ...............'),
(137, 6, 1, 5, 'Third Term', '2025/2026', 'ORANGE MAN TABLE APPLE', 'Table orange man apple', 'Apple man orange table', 'Man table apple orange', 'B', '2026-06-04 06:32:43', 'objective', '', 6, 'Arrange the following words in alphabetical order', ''),
(138, 6, 1, 5, 'Third Term', '2025/2026', 'CAT TABLE BOX SHEEP', 'Box cat sheep table', 'Cat sheep box table', 'Sheep table cat box', 'A', '2026-06-04 06:38:21', 'objective', '', 6, '', ''),
(139, 6, 1, 5, 'Third Term', '2025/2026', 'Phonic alphabet ee', '', '', '', 'A', '2026-06-04 06:42:02', 'essay', '', 6, 'Fill in the missing letter with the phonic alphabet ee', 'S _____ _____.      Tr _____ _____'),
(141, 6, 1, 5, 'Third Term', '2025/2026', 'Phonic alphabet OO', '', '', '', 'A', '2026-06-04 06:53:01', 'essay', '', 6, '', 'M _____ _____ n.         C _____ _____ K'),
(142, 6, 1, 5, 'Third Term', '2025/2026', 'OOCL__________   DOOG__________', '', '', '', 'A', '2026-06-04 06:56:48', 'essay', '', 6, 'Rearrange the following to make meaningful words', ''),
(143, 6, 1, 5, 'Third Term', '2025/2026', 'EEWK__________.  RGEET__________', '', '', '', 'A', '2026-06-04 06:59:31', 'essay', '', 6, '', ''),
(144, 6, 1, 5, 'Third Term', '2025/2026', 'Circle the vowel sounds..?', '', '', '', 'A', '2026-06-04 07:02:37', 'essay', '', 6, '', 'A    B    C    D    E    F    G    H    I    J    K    L    M    N    O    P    Q    R    S    T    U    V    W    X    Y    Z'),
(145, 6, 1, 5, 'Third Term', '2025/2026', 'Fill in the missing letters..?', '', '', '', 'A', '2026-06-04 07:07:39', 'essay', '', 6, '', 'A ____   C ____   E ____   G ____   I ____   K'),
(146, 6, 1, 5, 'Third Term', '2025/2026', '...... Is a substance used to treat disease and injuries..?', 'Chemical', 'Drug', 'Substance', 'B', '2026-06-04 08:53:07', 'objective', '', 6, '', ''),
(147, 6, 1, 5, 'Third Term', '2025/2026', 'Write your name on the blank space below..?', '', '', '', 'A', '2026-06-04 08:53:54', 'essay', '', 6, '', ''),
(151, 7, 1, 5, 'Third Term', '2025/2026', 'How many vowel sounds do we have..?', '2', '5', '12', 'B', '2026-06-06 10:19:30', 'objective', '', 6, '', ''),
(152, 7, 1, 5, 'Third Term', '2025/2026', 'How many consonant sounds do we have..?', '2', '23', '5', 'B', '2026-06-06 10:20:36', 'objective', '', 6, '', ''),
(153, 7, 1, 5, 'Third Term', '2025/2026', 'Tick YES or NO', '', '', '', 'A', '2026-06-06 10:26:13', 'essay', '', 6, '', 'g  is a vowel.      []Yes  []No\r\n\r\nc  is a vowel.      []Yes  []No\r\n\r\nm  is a consonant   []Yes  []No'),
(154, 7, 1, 5, 'Third Term', '2025/2026', 'Circle the word that begins with consonant sound in the box..?', '', '', '', 'A', '2026-06-06 10:35:40', 'essay', '', 6, '', '[g] - dog  goat  young  hog  mouth \r\n[v] - wear  vest  when  leg  market\r\n[y] - mat  wet  yes  happy  laugh'),
(155, 7, 1, 5, 'Third Term', '2025/2026', 'Underline the word that contains the vowel sound in the box..?', '', '', '', 'A', '2026-06-06 10:39:25', 'essay', '', 6, '', '[a] - cat  lucky  hot  sit  jump\r\n[u] - good  sit  man  map  sad\r\n[o] - boy  card  sad  love  sit'),
(156, 7, 1, 5, 'Third Term', '2025/2026', 'Circle the first word when arrange in alphabetical order..?', '', '', '', 'A', '2026-06-06 10:43:10', 'essay', '', 10, '', 'Grid caught scoop zone late\r\nOffer could scold zoo belt\r\nPure came blue wine stone'),
(157, 8, 1, 5, 'Third Term', '2025/2026', 'A E I O U are called ..?', 'Alphabet', 'Consonant', 'Vowel', 'C', '2026-06-06 10:46:12', 'objective', '', 6, '', ''),
(158, 8, 1, 5, 'Third Term', '2025/2026', 'There are....... Consonant in the English alphabet..?', '21', '5', '3', 'A', '2026-06-06 10:47:37', 'objective', '', 6, '', ''),
(159, 8, 1, 5, 'Third Term', '2025/2026', 'Vowels have ..... Letters..?', '5', '12', '3', 'A', '2026-06-06 10:48:53', 'objective', '', 6, '', ''),
(160, 8, 1, 5, 'Third Term', '2025/2026', 'How many consonant are there in word temporary..?', '9 (Nine)', '7 (Seven)', '6 (Six)', 'B', '2026-06-06 10:50:50', 'objective', '', 6, '', ''),
(161, 8, 1, 5, 'Third Term', '2025/2026', 'Rewrite the following jumbled words..', '', '', '', 'A', '2026-06-06 10:54:30', 'essay', '', 6, '', 'Mwob =............... Tilgh =...............\r\nYhmn =............  Ritgh =...............'),
(162, 8, 1, 5, 'Third Term', '2025/2026', 'Circle the WRONG spellings in the following:', '', '', '', 'A', '2026-06-06 10:58:29', 'essay', '', 6, '', '- Know  gnash  comb  kight  solemn\r\n- Pencil  column  right  light  comb'),
(163, 8, 1, 5, 'Third Term', '2025/2026', 'Circle the CORRECT spellings in the following:', '', '', '', 'A', '2026-06-06 11:09:19', 'essay', '', 6, '', 'Cassette Casssete Casette Cassett\r\nMoning Moring Morning Mroning'),
(164, 8, 1, 5, 'Third Term', '2025/2026', 'My mother is in the......', 'Kichen', 'Kichten', 'Kitchen', 'C', '2026-06-06 11:12:10', 'objective', '', 6, 'Choose from the options (A - C) which correctly fill the gap in the sentences.', ''),
(165, 8, 1, 5, 'Third Term', '2025/2026', 'This is our school........', 'Bagde', 'Badge', 'Bage', 'B', '2026-06-06 11:14:31', 'objective', '', 6, '', ''),
(166, 8, 1, 5, 'Third Term', '2025/2026', '......... Smoking is dangerous to our health..?', 'Cigarette', 'Cigaret', 'Cigerate', 'A', '2026-06-06 11:16:58', 'objective', '', 6, '', ''),
(168, 9, 1, 5, 'Third Term', '2025/2026', 'Choose the correct spellings below..?', '', '', '', 'A', '2026-06-07 16:32:19', 'essay', '', 6, 'Choose the correct spellings from the options.', '[ ] (a). Ontil.   [ ] (b). Unil.  [ ] (c). Utill. [ ] (d). Until \r\n\r\n[ ] (a). Seprite.   [ ] (b). Sepirate.  [ ] (c). Separate [ ] (d). Saperate'),
(169, 9, 1, 5, 'Third Term', '2025/2026', 'Choose the correct spellings..?', '', '', '', 'A', '2026-06-07 16:37:04', 'essay', '', 6, '', '[ ] (a). Biycle. [ ] (b). Bicycle. [ ] (c). Biyicle. [ ] (d). Bicyel\r\n\r\n[ ] (a). Mosquitor. [ ] (b). Mosqito. [ ] (c). Moskwito. [ ] (d). Mosquuto'),
(170, 9, 1, 5, 'Third Term', '2025/2026', 'The businessman took .......... From this bank..?', '', '', '', 'A', '2026-06-07 16:41:26', 'essay', '', 6, 'Choose from the options lettered A- D the most suitable spellings to fill the gaps in the sentences below:', '[ ] (a). a long. [ ] (b). a loan. [ ] (c). a lon. [ ] (d). a lome'),
(171, 9, 1, 5, 'Third Term', '2025/2026', 'Can we ....... to discuss the problems please..?', '', '', '', 'A', '2026-06-07 16:43:03', 'essay', '', 6, '', '[ ] (a). Meat. [ ] (b). Mint. [ ] (c). Meet. [ ] (d). Mit'),
(172, 9, 1, 5, 'Third Term', '2025/2026', 'Zainab ....... the way to the farm..?', '', '', '', 'A', '2026-06-07 16:44:23', 'essay', '', 6, '', '[ ] (a). Knows. [ ] (b). Nos. [ ] (c). Notes. [ ] (d). Noses'),
(173, 9, 1, 5, 'Third Term', '2025/2026', 'What is the code for blackboard..?', 'MP', 'XI', 'PX', 'B', '2026-06-07 16:50:09', 'objective', '', 6, 'Study the following codes and answer the questions below.\r\n\r\n[ Card - P ] [ Black - X ] [ Play - U ] [ Boad - I ] [ Ground - M ]', ''),
(174, 9, 1, 5, 'Third Term', '2025/2026', 'Playground is coded :', 'UM', 'MU', 'PI', 'A', '2026-06-07 16:51:05', 'objective', '', 6, '', ''),
(175, 9, 1, 5, 'Third Term', '2025/2026', 'XI is coded for .....?', 'Cardboard', 'Blacklad', 'Blackboard', 'C', '2026-06-07 16:52:18', 'objective', '', 6, '', ''),
(176, 9, 1, 5, 'Third Term', '2025/2026', 'Farming, teaching, tailoring, army ......?', 'Occupation', 'Subject', 'Marketing', 'A', '2026-06-07 16:55:27', 'objective', '', 6, '', ''),
(177, 9, 1, 5, 'Third Term', '2025/2026', 'Sunday, tuesday, thursday, monday .....?', 'Year', 'Week', 'Day', 'C', '2026-06-07 16:56:46', 'objective', '', 6, '', ''),
(178, 6, 5, 5, 'Third Term', '2025/2026', 'Who was the mother of prophet Isa (A.S)..?', 'Khadijah', 'Maryam', 'Nana Aisha', 'B', '2026-06-07 17:08:51', 'objective', '', 6, '', ''),
(179, 6, 5, 5, 'Third Term', '2025/2026', 'Who was the father of Maryam [ mother of Isa(A.S) ]..?', 'Imran', 'Ammar', 'Umar', 'A', '2026-06-07 17:10:35', 'objective', '', 6, '', ''),
(180, 6, 5, 5, 'Third Term', '2025/2026', 'Maryam grew up under the custody and care of ..?', 'Prophet Yahaya', 'Prophet Zakariyyah', 'Prophet Musa (A.S)', 'A', '2026-06-07 17:12:45', 'objective', '', 6, '', ''),
(181, 6, 5, 5, 'Third Term', '2025/2026', 'What chapter of the Quran is suratul Ma\'un..?', '701', '170', '107', 'A', '2026-06-07 17:14:00', 'objective', '', 6, '', ''),
(182, 6, 5, 5, 'Third Term', '2025/2026', 'Were was suratul Ma\'un revealed..?', 'Makkah', 'Mina', 'Madinah', 'A', '2026-06-07 17:14:59', 'objective', '', 6, '', ''),
(183, 6, 5, 5, 'Third Term', '2025/2026', 'How many verses are in suratul Ma\'un..?', '6 (Six)', '7 (Seven)', '9 (Nine)', 'A', '2026-06-07 17:30:05', 'objective', '', 6, '', ''),
(184, 6, 5, 5, 'Third Term', '2025/2026', 'ASAMI means ....... in English..?', 'The All-Hearing', 'The Judge', 'The All-Seeing', 'A', '2026-06-07 17:31:27', 'objective', '', 6, '', ''),
(185, 6, 5, 5, 'Third Term', '2025/2026', 'Which Arabic name of Allah means the Judge..?', 'Al-Hakam', 'Al-Adl', 'Al-Basir', 'A', '2026-06-07 17:34:29', 'objective', '', 6, '', ''),
(186, 6, 5, 5, 'Third Term', '2025/2026', 'Who was the father of prophet Muhammad (S.A.W)..?', 'Ahmad', 'Abdullah', 'Abdul-Muttalib', 'B', '2026-06-07 17:36:02', 'objective', '', 6, '', ''),
(187, 6, 5, 5, 'Third Term', '2025/2026', 'Who was the mother of prophet Muhammad (S.A.W)..?', 'Hafsat', 'Halimah', 'Aminah', 'C', '2026-06-07 17:36:58', 'objective', '', 6, '', ''),
(188, 7, 5, 5, 'Third Term', '2025/2026', 'The signs of a hypocrite are.....?', 'One', 'Two', 'Three', 'A', '2026-06-07 17:38:25', 'objective', '', 6, '', ''),
(189, 7, 5, 5, 'Third Term', '2025/2026', 'Suratul Humazah is the Quran chapter...?', '140', '104', '401', 'A', '2026-06-07 17:39:47', 'objective', '', 6, '', ''),
(190, 7, 5, 5, 'Third Term', '2025/2026', 'Suratul Humazah has .... Verses..?', '9 ( Nine )', '8 ( Eight )', '7 ( Seven )', 'A', '2026-06-07 17:41:55', 'objective', '', 6, '', ''),
(191, 7, 5, 5, 'Third Term', '2025/2026', '..... Is what happens to somebody or what will happen to him future..?', 'Testimony', 'Destiny', 'Morality', 'B', '2026-06-07 17:46:07', 'objective', '', 6, '', ''),
(192, 7, 5, 5, 'Third Term', '2025/2026', 'To believe in destiny is one of the articles of ... In Islam..?', 'Islam', 'Salat', 'Faith', 'C', '2026-06-07 17:47:34', 'objective', '', 6, '', ''),
(193, 7, 5, 5, 'Third Term', '2025/2026', 'AL-HAKIM means ........ In English..?', 'The Wise', 'The Witness', 'The Merciful', 'A', '2026-06-08 07:00:02', 'objective', '', 6, '', ''),
(194, 7, 5, 5, 'Third Term', '2025/2026', 'Which Arabic name of ALLAH means the \"The Loving\"..?', 'AL-HAKIM', 'AL-WADUD', 'AR-RAHIM', 'A', '2026-06-08 07:05:32', 'objective', '', 6, '', ''),
(195, 7, 5, 5, 'Third Term', '2025/2026', 'Prophet Muhammad (S.A.W) was made a messenger of ALLAH at the age of .....?', '42', '30', '40', 'C', '2026-06-08 07:06:57', 'objective', '', 6, '', ''),
(196, 7, 5, 5, 'Third Term', '2025/2026', 'The first person to accept Islam in the household of prophet (S.A.W) was ...?', 'Khadijah', 'Usman', 'Abubakar', 'A', '2026-06-08 07:09:40', 'objective', '', 6, '', ''),
(197, 7, 5, 5, 'Third Term', '2025/2026', 'Who was the father of prophet Muhammad (S.A.W) ..?', 'Abubakar', 'Abdullah', 'Umar', 'A', '2026-06-08 07:10:45', 'objective', '', 6, '', ''),
(198, 8, 5, 5, 'Third Term', '2025/2026', 'Prophet Muhammad (S.A.W) died at the age of ....?', '40', '53', '63', 'C', '2026-06-08 07:11:48', 'objective', '', 6, '', ''),
(199, 8, 5, 5, 'Third Term', '2025/2026', 'He died after spending ..... years in madinah..?', 'Ten years', 'Fifteen years', 'Thirten years', 'A', '2026-06-08 07:13:10', 'objective', '', 6, '', ''),
(200, 8, 5, 5, 'Third Term', '2025/2026', 'Prophet Muhammad (S.A.W) was survived by ....... Wives..?', '11 (Eleven)', '9 (Nine)', '7 (Seven)', 'B', '2026-06-08 07:14:42', 'objective', '', 6, '', ''),
(201, 8, 5, 5, 'Third Term', '2025/2026', 'To believe in the existence of angels is one of the articles of ........ in Islam..?', 'Prayer', 'Fasting', 'Faith', 'C', '2026-06-08 07:16:16', 'objective', '', 6, '', ''),
(202, 8, 5, 5, 'Third Term', '2025/2026', 'ALLAH (S.W.T) created the angels from ....?', 'Light', 'Fire', 'Clay', 'B', '2026-06-08 07:17:40', 'objective', '', 6, '', ''),
(203, 8, 5, 5, 'Third Term', '2025/2026', '\"ASSADIQUL-AMIN\" means ........ In English..?', 'Morally sound', 'The truthful and trustworthy  person', 'A disappointed person', 'B', '2026-06-08 07:19:46', 'objective', '', 6, '', ''),
(204, 8, 5, 5, 'Third Term', '2025/2026', 'How many verses (ayat) are in suratul Quraysh...?', '106', '3 (Three)', '4 (Four)', 'A', '2026-06-08 07:21:24', 'objective', '', 6, '', ''),
(205, 8, 5, 5, 'Third Term', '2025/2026', 'Suratul Quraysh is the Qur\'an chapter .......?', '106', '105', '104', 'A', '2026-06-08 07:22:32', 'objective', '', 6, '', ''),
(206, 8, 5, 5, 'Third Term', '2025/2026', 'The chapter of Quraysh was revealed in .....?', 'Madinah', 'Makkah', 'Madyana', 'A', '2026-06-08 07:25:12', 'objective', '', 6, '', ''),
(207, 8, 5, 5, 'Third Term', '2025/2026', 'ATTAWRAH was given to prophet ......?', 'Isa (A.S)', 'Muhammad (S.A.W)', 'Mysa (A.S)', 'A', '2026-06-08 07:27:13', 'objective', '', 6, '', ''),
(208, 9, 5, 5, 'Third Term', '2025/2026', '........ Is an Arabic word and simply means fasting...?', 'Zakat', 'Salat', 'Sawm', 'A', '2026-06-08 07:31:39', 'objective', '', 6, '', ''),
(209, 9, 5, 5, 'Third Term', '2025/2026', '....... Is the habit of thinking more about the needs, happiness, comfort, success of other people than about your own..?', 'Selflessness', 'Truthfulness', 'Trustworthy', 'A', '2026-06-08 07:37:32', 'objective', '', 6, '', ''),
(210, 9, 5, 5, 'Third Term', '2025/2026', 'AL-MUMINUN means .......?', 'Unbelievers', 'The believers', 'The helpers', 'A', '2026-06-08 07:38:38', 'objective', '', 6, '', ''),
(211, 9, 5, 5, 'Third Term', '2025/2026', 'AL-ANSAR means ...?', 'The believers', 'Meccans', 'The helpers', 'A', '2026-06-08 07:39:53', 'objective', '', 6, '', ''),
(212, 9, 5, 5, 'Third Term', '2025/2026', 'How many verses are in suratul-Tin...?', 'Eight (8)', 'Seven (7)', 'Nine (9)', 'A', '2026-06-08 07:40:59', 'objective', '', 6, '', ''),
(213, 9, 5, 5, 'Third Term', '2025/2026', 'Suratul-Tin was revealed in the .......?', 'Madinah', 'Makkah', 'Da\'if', 'A', '2026-06-08 07:43:00', 'objective', '', 6, '', ''),
(214, 9, 5, 5, 'Third Term', '2025/2026', '...... Can be defined as charity, alms and generous giving..?', 'Hajj', 'Salat', 'Zakat', 'A', '2026-06-08 07:44:08', 'objective', '', 6, '', ''),
(215, 9, 5, 5, 'Third Term', '2025/2026', 'The literal meaning of Zakat include the following except..?', 'Zakat', 'Purification', 'Growth or development', 'A', '2026-06-08 07:45:40', 'objective', '', 6, '', ''),
(216, 9, 5, 5, 'Third Term', '2025/2026', 'The action of behaving or dressing so that you do not show your body or or attract sexual attention....?', 'Modesty', 'Morality', 'Forgiveness', 'A', '2026-06-08 07:47:56', 'objective', '', 6, '', ''),
(217, 9, 5, 5, 'Third Term', '2025/2026', 'The primary objectives of dresses in islam is to ........ the body..?', 'Open', 'Cover', 'To attract sexual attention', 'B', '2026-06-08 07:49:48', 'objective', '', 6, '', ''),
(218, 11, 21, 5, 'Third Term', '2025/2026', 'تبت يدا أبي لهب و', 'لهب', 'وتب', '', 'A', '2026-06-09 02:18:31', 'objective', '', 10, '', ''),
(219, 11, 21, 5, 'Third Term', '2025/2026', 'سيصلى ناراً ذات', 'مسد', 'لهب', '', 'A', '2026-06-09 02:19:39', 'objective', '', 10, '', ''),
(220, 11, 21, 5, 'Third Term', '2025/2026', 'اقرأ / اقرئي سورة الكافرون', '', '', '', 'A', '2026-06-09 02:23:34', NULL, '', NULL, NULL, '١. قل يا أيها الكافرون ٢. لا أعبد ما تعبدون ٣. ولا أنتم عابدون ما أعبد ٤. ولا أنا عابد ما عبدتم ٥. ولا أنتم عابدون ما أعبد ٦. لكم دينكم ولي دين'),
(221, 11, 21, 5, 'Third Term', '2025/2026', '.... ورأيت الناس يدخلون في دين الله', 'الفتح', 'أفواجا', '', 'A', '2026-06-09 02:24:38', 'objective', '', 10, '', ''),
(222, 11, 21, 5, 'Third Term', '2025/2026', 'إذا جاء نصر الله و', 'الكذب', 'الفتح', '', 'A', '2026-06-09 02:25:54', 'objective', '', 10, '', ''),
(223, 11, 21, 5, 'Third Term', '2025/2026', 'فسبح بحمد ربك واستغفره إنه كان', 'توابا', 'ثوابا', '', 'A', '2026-06-09 02:26:47', 'objective', '', 10, '', ''),
(224, 6, 4, 5, 'Third Term', '2025/2026', '........ Is a group of people that are related to each other by blood, marriage or adoption..?', 'Family', 'Communication', 'Football', 'A', '2026-06-09 08:09:27', 'objective', '', 6, '', ''),
(225, 5, 7, 6, 'Third Term', '2025/2026', 'Foods are things that people or .....eat', 'Man', 'Animals', 'Children', 'B', '2026-06-09 08:09:33', 'objective', '', 6, '', ''),
(226, 6, 4, 5, 'Third Term', '2025/2026', 'How many types of family do we have...?', '2', '6', '4', 'A', '2026-06-09 08:11:46', 'objective', '', 6, '', ''),
(227, 5, 7, 6, 'Third Term', '2025/2026', 'Food are eaten how many times a day', 'Three times', 'Two times', 'One times', 'A', '2026-06-09 08:12:48', 'objective', '', 6, '', ''),
(228, 6, 4, 5, 'Third Term', '2025/2026', 'Members of a family must love one another..?', 'True', 'False', 'All of the above', 'A', '2026-06-09 08:13:42', 'objective', '', 6, '', ''),
(229, 6, 4, 5, 'Third Term', '2025/2026', 'Providing food, clothing and shelter is one of the duties of a....?', 'Father and Mother', 'Brother and Sister', 'Uncle and Nephew', 'A', '2026-06-09 08:16:25', 'objective', '', 6, '', ''),
(230, 6, 4, 5, 'Third Term', '2025/2026', 'Types of family are Nuclear family and extended family..?', 'True', 'False', 'All of the above', 'A', '2026-06-09 08:17:20', 'objective', '', 6, '', ''),
(231, 5, 7, 6, 'Third Term', '2025/2026', 'Social studies is the study of people, society, culture, government, history,and how people live  and interact with one another and their environment.', 'Yes', 'No', 'All of the above', 'A', '2026-06-09 08:24:01', 'objective', '', 6, '', ''),
(232, 5, 7, 6, 'Third Term', '2025/2026', 'There are two types of family', 'Yes', 'No', 'All af the above', 'A', '2026-06-09 08:27:01', 'objective', '', 6, '', ''),
(233, 5, 7, 6, 'Third Term', '2025/2026', 'List 2 types of food you know.                                                ', '', '', '', 'A', '2026-06-09 08:32:07', 'objective', '', 6, '', ''),
(234, 5, 7, 6, 'Third Term', '2025/2026', 'How many types of culture Do we have', '', '', '', 'A', '2026-06-09 08:36:13', 'essay', '', 12, '', ''),
(235, 9, 2, 5, 'Third Term', '2025/2026', 'The sun (Solar energy) gives out two forms of energy, light energy and ..... energy ..?', '', '', '', 'A', '2026-06-11 07:46:39', 'essay', '', NULL, '', ''),
(236, 9, 2, 5, 'Third Term', '2025/2026', 'Energy is the ability to do work..?', 'True', 'False', 'All of the above', 'A', '2026-06-11 07:52:19', 'objective', '', 6, '', ''),
(237, 9, 2, 5, 'Third Term', '2025/2026', 'The two kinds of energy are, potential energy and ......... energy ..?', 'Kinetic energy', 'Heat energy', 'Solar energy', 'A', '2026-06-11 08:02:47', 'objective', '', 6, '', ''),
(238, 9, 2, 5, 'Third Term', '2025/2026', 'What is energy .....?', '', '', '', 'A', '2026-06-11 08:03:22', 'essay', '', 6, '', ''),
(239, 5, 3, 6, 'Third Term', '2025/2026', 'Good manners are polite and respectful behaviors that show consideration for other people', 'Yes', 'No', 'Non of the above', 'A', '2026-06-11 08:05:54', 'objective', '', 6, '', ''),
(240, 9, 2, 5, 'Third Term', '2025/2026', 'List two technology products that make use of electrical energy to heat energy..?', '', '', '', 'A', '2026-06-11 08:06:00', 'essay', '', 6, '', 'I) _______________________________________________________\r\nII) _______________________________________________________'),
(241, 5, 3, 6, 'Third Term', '2025/2026', 'List 2 examples of good manners.', '', '', '', 'A', '2026-06-11 08:11:35', 'essay', '', 12, '', '1.\r\n2.'),
(242, 5, 2, 6, 'Third Term', '2025/2026', 'How many sense of body do we have ..?', '5', '4', '6', 'A', '2026-06-11 08:24:00', 'objective', '', 6, '', ''),
(243, 5, 2, 6, 'Third Term', '2025/2026', 'All living things need water to .......... ?', 'Live', 'Move', 'Die', 'A', '2026-06-11 08:29:31', 'objective', '', 6, '', ''),
(244, 7, 3, 5, 'Third Term', '2025/2026', 'The green color us the symbol of the country..?', 'True', 'False', 'None of the above', 'A', '2026-06-11 16:18:35', 'objective', '', 6, '', ''),
(245, 7, 3, 5, 'Third Term', '2025/2026', 'A constitution is a set of rules that state the duties, powers, and functions of various arms of government..?', 'True', 'False', 'None of the above', 'A', '2026-06-11 16:20:29', 'objective', '', 6, '', ''),
(246, 7, 3, 5, 'Third Term', '2025/2026', '...... Is a means of identification for the citizens of Nigeria..?', 'National values', 'National identity', 'National passport', 'B', '2026-06-11 16:22:11', 'objective', '', 6, '', ''),
(247, 7, 3, 5, 'Third Term', '2025/2026', 'The example of political leaders are President, Government and Senate..?', 'True', 'False', 'None of the above', 'A', '2026-06-11 16:23:39', 'objective', '', 6, '', ''),
(248, 7, 3, 5, 'Third Term', '2025/2026', '...... Is the practice of keeping oneself and the surrounding clean in other to prevent diseases..?', 'Facilities', 'Personal hygiene', 'All of the above', 'B', '2026-06-11 16:25:52', 'objective', '', 6, '', ''),
(249, 7, 3, 5, 'Third Term', '2025/2026', '........ Is the type of toilet used mostly in the cities..?', 'Traditional toilet', 'Modern toilet', 'Areas', 'B', '2026-06-11 16:31:22', 'objective', '', 6, '', ''),
(250, 7, 3, 5, 'Third Term', '2025/2026', 'Drugs laws are rules and regulations guiding the productions and use of drugs..?', 'True', 'False', 'None of the above', 'A', '2026-06-11 16:33:33', 'objective', '', 6, '', ''),
(251, 7, 3, 5, 'Third Term', '2025/2026', 'Drug are medicine we take to treat illness when we are sick..?', 'True', 'False', 'None of the above', 'A', '2026-06-11 16:35:16', 'objective', '', 6, '', ''),
(252, 7, 3, 5, 'Third Term', '2025/2026', 'The national drug law enforcement agency is an agency setup by the ........ ?', 'Offender', 'Government', 'Family', 'B', '2026-06-11 16:36:52', 'objective', '', 6, '', ''),
(253, 7, 3, 5, 'Third Term', '2025/2026', '....... is one of the social agencies that controls the use of drugs..?', 'Family', 'Market', 'Farm', 'A', '2026-06-11 16:38:36', 'objective', '', 6, '', ''),
(254, 7, 7, 5, 'Third Term', '2025/2026', '....... are materials and equipment used at home..?', 'School', 'Appliances', 'Works', 'B', '2026-06-11 16:40:02', 'objective', '', 6, '', ''),
(255, 7, 7, 5, 'Third Term', '2025/2026', 'Bandage and plaster are materials found in the first aid box..?', 'True', 'False', 'None of the above', 'A', '2026-06-11 16:41:18', 'objective', '', 6, '', ''),
(256, 7, 7, 5, 'Third Term', '2025/2026', 'First aid is the immediate treatment given to an accident victim before taking the person to the ......... ?', 'Farm', 'Hospital', 'School', 'B', '2026-06-11 16:45:25', 'objective', '', 6, '', ''),
(257, 7, 7, 5, 'Third Term', '2025/2026', 'The marriage conducted in an Islamic way is known as ...... ?', 'Church marriage', 'Traditional marriage', 'Islamic marriage', 'C', '2026-06-11 16:47:42', 'objective', '', 6, '', ''),
(258, 7, 7, 5, 'Third Term', '2025/2026', 'The following is a type of medicine except ..... ?', 'Table', 'Syrup', 'Tablets', 'A', '2026-06-11 16:49:39', 'objective', '', 6, '', ''),
(259, 7, 7, 5, 'Third Term', '2025/2026', 'Roed accident are sudden events that happen on the ......?', 'Room', 'Road', 'Root', 'B', '2026-06-11 16:50:55', 'objective', '', 6, '', ''),
(260, 7, 7, 5, 'Third Term', '2025/2026', 'There are ......... types of appliances..?', '2', '4', '3', 'A', '2026-06-11 16:51:45', 'objective', '', 6, '', ''),
(261, 7, 7, 5, 'Third Term', '2025/2026', '........ is the movement of goods and services from one place to another..?', 'Transportation', 'Problems', 'Substances', 'A', '2026-06-11 16:53:03', 'objective', '', 6, '', ''),
(262, 7, 7, 5, 'Third Term', '2025/2026', '.......... is a union between a man and a woman who have agreed to live together as husband and wife..?', 'Culture', 'Marriage', 'Education', 'B', '2026-06-11 16:54:35', 'objective', '', 6, '', ''),
(263, 7, 7, 5, 'Third Term', '2025/2026', 'List two types of marriage...?', '', '', '', 'A', '2026-06-11 16:55:12', 'essay', '', 6, '', ''),
(264, 8, 3, 5, 'Third Term', '2025/2026', '..... is a body of people that are united and willing to live together..?', 'Nature', 'Nation', 'Place', 'B', '2026-06-11 16:56:57', 'objective', '', 6, '', ''),
(265, 8, 3, 5, 'Third Term', '2025/2026', 'The following are responsibilities of parents to their children except....?', 'Shelter', 'Cheating', 'Feeding', 'B', '2026-06-11 17:00:52', 'objective', '', 6, '', ''),
(266, 8, 3, 5, 'Third Term', '2025/2026', 'Communalism is a system in which members of a community comes together..?', 'True', 'False', 'None of the above', 'A', '2026-06-11 17:09:07', 'objective', '', 6, '', ''),
(267, 8, 3, 5, 'Third Term', '2025/2026', 'The following are attributes of communalism except ......?', 'Duties', 'Co-operation', 'Dialogue', 'A', '2026-06-11 17:10:41', 'objective', '', 6, '', ''),
(268, 8, 3, 5, 'Third Term', '2025/2026', 'Local government is a body of people who controls public affairs at the grass roots..?', 'True', 'False', 'None of the above', 'A', '2026-06-11 17:12:05', 'objective', '', 6, '', ''),
(269, 8, 3, 5, 'Third Term', '2025/2026', '....... means leadership based on the customs and traditions of the people..?', 'Local communities', 'Traditional leadership', 'Symbols', 'A', '2026-06-11 17:14:27', 'objective', '', 6, '', ''),
(270, 8, 3, 5, 'Third Term', '2025/2026', 'Cultural diversity means difference in our ways of......?', 'Life', 'Express', 'Qualities', 'A', '2026-06-11 17:15:57', 'objective', '', 6, '', ''),
(271, 8, 3, 5, 'Third Term', '2025/2026', 'Patriotism and loyalty are examples of civic values..?', 'True', 'False', 'None of the above', 'A', '2026-06-11 17:17:14', 'objective', '', 6, '', ''),
(272, 8, 3, 5, 'Third Term', '2025/2026', 'There are ......... Characteristics of a nation..?', '4', '6', '5', 'A', '2026-06-11 17:18:23', 'objective', '', 6, '', ''),
(273, 8, 3, 5, 'Third Term', '2025/2026', 'A nation is made up of people who have similar customs and habits..?', 'True', 'False', 'None of the above', 'A', '2026-06-11 17:19:39', 'objective', '', 6, '', ''),
(274, 8, 3, 5, 'Third Term', '2025/2026', 'List any three (3) characteristics of a nation ...?', '', '', '', 'A', '2026-06-11 17:21:41', 'objective', '', 6, 'Essay part, answer all questions.', ''),
(275, 8, 3, 5, 'Third Term', '2025/2026', 'What is traditional government..?', '', '', '', 'A', '2026-06-11 17:22:17', 'essay', '', 6, '', ''),
(276, 8, 7, 5, 'Third Term', '2025/2026', 'Division of labour is a situation where a job is carried out by different people..?', 'True', 'False', 'None of the above', 'A', '2026-06-11 17:24:17', 'objective', '', 6, '', ''),
(277, 8, 7, 5, 'Third Term', '2025/2026', 'Agricultural industries produces cash crops, fish and .......?', 'Book', 'Meat', 'Clothes', 'A', '2026-06-11 17:25:37', 'objective', '', 6, '', ''),
(278, 8, 7, 5, 'Third Term', '2025/2026', 'Maintenance of law and order are functions of state government..?', 'True', 'False', 'All of the above', 'A', '2026-06-11 17:26:41', 'objective', '', 6, '', ''),
(279, 8, 7, 5, 'Third Term', '2025/2026', 'The following are elements of culture except .......?', 'Language', 'Festivals', 'Marriage', 'A', '2026-06-11 17:27:44', 'objective', '', 6, '', ''),
(280, 8, 7, 5, 'Third Term', '2025/2026', 'Animal productions involve the rearing of .......?', 'Trees', 'Animals', 'Sugar', 'A', '2026-06-11 17:28:52', 'objective', '', 6, '', ''),
(281, 8, 7, 5, 'Third Term', '2025/2026', 'A bank is a place where we save our ......?', 'Money', 'Food', 'Fish', 'A', '2026-06-11 17:29:49', 'objective', '', 6, '', ''),
(282, 8, 7, 5, 'Third Term', '2025/2026', '....... is the act of keeping something from being damaged or wasted..?', 'Found', 'Conservation', 'Obtained', 'B', '2026-06-11 17:31:48', 'objective', '', 6, '', ''),
(283, 8, 7, 5, 'Third Term', '2025/2026', 'Traditional means of communication involve the use of talking drums, bonfires and .........?', 'Paper', 'Message', 'Computer', 'A', '2026-06-11 17:33:21', 'objective', '', 6, '', ''),
(284, 8, 7, 5, 'Third Term', '2025/2026', 'The traditional system make use of local materials..?', 'True', 'False', 'All of the above', 'A', '2026-06-11 17:34:19', 'objective', '', 6, '', ''),
(285, 8, 7, 5, 'Third Term', '2025/2026', 'The central bank of Nigeria started operating in July .......?', '1959', '1957', '1954', 'A', '2026-06-11 17:35:22', 'objective', '', 6, '', ''),
(286, 8, 7, 5, 'Third Term', '2025/2026', 'List any five (5) different banks in Nigeria you know..?', '', '', '', 'A', '2026-06-11 17:36:47', 'essay', '', 6, 'Essay part, answer all questions.', ''),
(287, 8, 7, 5, 'Third Term', '2025/2026', 'What is a bank..?', '', '', '', 'A', '2026-06-11 17:37:26', 'essay', '', 6, '', ''),
(288, 9, 3, 5, 'Third Term', '2025/2026', 'Natural disaster are caused by ....... events ..?', 'Animal', 'Natural', 'Man', 'B', '2026-06-13 03:56:43', 'objective', '', 6, '', ''),
(289, 9, 3, 5, 'Third Term', '2025/2026', '....... refers to the tradition of people and their concerns ..?', 'Cultural component', 'Economic component', 'Social component', 'A', '2026-06-13 03:58:14', 'objective', '', 6, '', ''),
(290, 9, 3, 5, 'Third Term', '2025/2026', '........ is a government program which encourages young graduates of higher institution ..?', 'NYSCC', 'NYSC', 'NYNE', 'B', '2026-06-13 03:59:54', 'objective', '', 6, '', ''),
(291, 9, 3, 5, 'Third Term', '2025/2026', 'Voluntary services are organizations that render humanitarian services ..?', 'True', 'False', 'None of the above', 'A', '2026-06-13 04:01:32', 'objective', '', 6, '', ''),
(292, 9, 3, 5, 'Third Term', '2025/2026', '........ means the administration of a nation by a group of people ..?', 'Government', 'Justice', 'Federation', 'A', '2026-06-13 04:02:54', 'objective', '', 6, '', ''),
(293, 9, 3, 5, 'Third Term', '2025/2026', 'Separation of power means the power of the .......... of government ..?', 'Four arms', 'Three arms', 'One arm', 'A', '2026-06-13 04:04:17', 'objective', '', 6, '', ''),
(294, 9, 3, 5, 'Third Term', '2025/2026', 'There are ........... component of civic education ..?', '6', '5', '4', 'A', '2026-06-13 04:05:06', 'objective', '', 6, '', ''),
(295, 9, 3, 5, 'Third Term', '2025/2026', 'Civic education helps in developing good and responsive citizens ..?', 'True', 'False', 'All of the above', 'A', '2026-06-13 04:06:31', 'objective', '', 6, '', ''),
(296, 9, 3, 5, 'Third Term', '2025/2026', '........ occur when there is a great quantity of water lying on the ground ..?', 'Poor drainage', 'Flood', 'Climatic change', 'A', '2026-06-13 04:08:21', 'objective', '', 6, '', ''),
(297, 9, 3, 5, 'Third Term', '2025/2026', 'Citizenship is referred to a state of being a member ..?', 'True', 'False', 'All of the above', 'A', '2026-06-13 04:09:43', 'objective', '', 6, '', ''),
(298, 9, 3, 5, 'Third Term', '2025/2026', 'What is a leader ...?', '', '', '', 'A', '2026-06-13 04:10:50', 'objective', '', 6, 'Essay part answer all questions', ''),
(299, 9, 3, 5, 'Third Term', '2025/2026', 'List two types of disasters ...?', '', '', '', 'A', '2026-06-13 04:11:29', 'essay', '', 6, '', ''),
(300, 9, 7, 5, 'Third Term', '2025/2026', '...... refers to state of being joined together ..?', 'Unify', 'Unity', 'Forced', 'B', '2026-06-13 04:13:24', 'objective', '', 6, '', ''),
(301, 9, 7, 5, 'Third Term', '2025/2026', 'Organization means a group of people who come together to manage the .......?', 'Resources', 'Community', 'Locality', 'A', '2026-06-13 04:15:18', 'objective', '', 6, '', ''),
(302, 9, 7, 5, 'Third Term', '2025/2026', 'Co-operation means the working together of people for the common good of all ..?', 'True', 'False', 'All of the above', 'A', '2026-06-13 04:16:54', 'objective', '', 6, '', ''),
(303, 9, 7, 5, 'Third Term', '2025/2026', 'Political parties are formed by people who have similar views and ....?', 'Conventions', 'Ideologies', 'Co-ordinate', 'B', '2026-06-13 04:18:33', 'objective', '', 6, '', ''),
(304, 9, 7, 5, 'Third Term', '2025/2026', '....... are the people who co-ordinate the affairs of the party ...?', 'Party executive', 'Party logo', 'Party manifestos', 'A', '2026-06-13 04:20:27', 'objective', '', 6, '', ''),
(305, 9, 7, 5, 'Third Term', '2025/2026', 'Resources are materials used for further productions ..?', 'True', 'False', 'All of the above', 'A', '2026-06-13 04:21:34', 'objective', '', 6, '', ''),
(306, 9, 2, 5, 'Third Term', '2025/2026', 'What type of rock can you see in the picture ..?', 'Igneous rock', 'Sedimentary rock', 'Metamorphic rock', 'A', '2026-06-13 04:30:13', 'objective', 'basic_science_third_term_2025_2026.jpg', 6, '', ''),
(307, 9, 2, 5, 'Third Term', '2025/2026', 'Examples of igneous rock are  basalt and ......?', 'Granite', 'Limestone', 'Shale', 'A', '2026-06-13 04:33:37', 'objective', '', 6, '', ''),
(308, 9, 2, 5, 'Third Term', '2025/2026', 'What causes the formation of igneous rocks ....?', 'Heat', 'Water', 'Rainfall', 'A', '2026-06-13 04:34:46', 'objective', '', 6, '', ''),
(310, 5, 6, 5, 'Third Term', '2025/2026', 'Draw a GSM or mobile phone ..?', '', '', '', 'A', '2026-06-15 01:20:18', 'essay', '', 6, '', '');
INSERT INTO `questions` (`id`, `class_id`, `subject_id`, `teacher_id`, `term`, `session`, `question`, `option_a`, `option_b`, `option_c`, `correct_option`, `created_at`, `question_type`, `question_image`, `marks`, `instruction`, `sample_answer`) VALUES
(311, 5, 6, 5, 'Third Term', '2025/2026', 'Which of these is an electronic machine  tick all electronic machines ..?', '', '', '', 'A', '2026-06-15 01:30:44', 'essay', '', 6, '', '📱.         ⚽.          📺.          📚'),
(312, 5, 4, 6, 'Third Term', '2025/2026', 'Personal hygiene means keeping our body clean and healthy', 'Yes', 'No', 'All of the above', 'A', '2026-06-15 08:22:02', 'objective', '', 6, '', ''),
(313, 5, 4, 6, 'Third Term', '2025/2026', 'Take a bathe every......', 'Every times', 'Every  day', 'Every week', 'B', '2026-06-15 08:26:34', 'objective', '', 6, '', ''),
(314, 5, 4, 6, 'Third Term', '2025/2026', 'Brush our teeth morning and......', 'Night', 'Afternoon', 'Evening', 'A', '2026-06-15 08:28:47', 'objective', '', 6, '', ''),
(315, 5, 4, 6, 'Third Term', '2025/2026', '.... ..... Means keeping our body clean and healthy', 'Personal hygiene', 'Human body', 'Senses organ', 'A', '2026-06-15 08:35:37', 'objective', '', 6, '', ''),
(316, 5, 4, 6, 'Third Term', '2025/2026', 'P h e means.......', 'Physical and health education', 'Physical and exercise', 'Physical and healthy', 'A', '2026-06-15 08:38:28', 'objective', '', 6, '', ''),
(317, 5, 4, 6, 'Third Term', '2025/2026', 'Some parts of our body can .......', 'Bend', 'Stand', 'Move', 'A', '2026-06-15 09:23:21', 'objective', '', 6, '', ''),
(318, 5, 4, 6, 'Third Term', '2025/2026', 'Foot ball is a .......', 'Game', 'Sports', 'Playing', 'A', '2026-06-15 09:26:07', 'objective', '', 6, '', ''),
(319, 5, 4, 6, 'Third Term', '2025/2026', 'List three (3) part of the body you know.                                    1.                                       2.                                             3.', '', '', '', 'A', '2026-06-15 09:29:35', 'essay', '', 6, '', ''),
(320, 5, 2, 6, 'Third Term', '2025/2026', 'A market is a ......', 'Room', 'Place', 'Home', 'B', '2026-06-15 09:38:06', 'objective', '', 6, '', ''),
(321, 5, 2, 6, 'Third Term', '2025/2026', 'Living things can move', 'Yes', 'No', 'All of the above', 'A', '2026-06-15 09:40:05', 'objective', '', 6, '', ''),
(322, 5, 2, 6, 'Third Term', '2025/2026', 'How many types of living things', '2', '3', '1', 'A', '2026-06-15 09:41:30', 'objective', '', 6, '', ''),
(323, 5, 2, 6, 'Third Term', '2025/2026', 'All living things need water to .....', 'Live', 'Die', 'Plant', 'A', '2026-06-15 09:43:33', 'objective', '', 6, '', ''),
(324, 5, 2, 6, 'Third Term', '2025/2026', 'We need water every day at home,in the school,in the office in the market', 'Yes', 'No', 'All of the above', 'A', '2026-06-15 09:46:04', 'objective', '', 6, '', ''),
(325, 5, 2, 6, 'Third Term', '2025/2026', '.....is a place were we buy and sell things', 'Market', 'Church', 'Home', 'A', '2026-06-15 09:48:30', 'objective', '', 6, '', ''),
(326, 5, 2, 6, 'Third Term', '2025/2026', 'Locomotive movement means those  movement the body makes when we walk,leap or run.', 'Yes', 'No', 'All of the above', 'A', '2026-06-15 09:49:04', 'objective', '', 6, '', ''),
(327, 5, 2, 6, 'Third Term', '2025/2026', 'We have ..... Senses of the body', '5', '6', '4', 'A', '2026-06-15 10:01:21', 'objective', '', 6, '', ''),
(328, 5, 1, 6, 'Third Term', '2025/2026', 'Write 5 vowels sound you know ..?', '', '', '', 'A', '2026-06-18 08:22:00', 'essay', '', 6, '', '1. \r\n2. \r\n3. \r\n4. \r\n5.'),
(329, 5, 1, 6, 'Third Term', '2025/2026', 'Write your full name ..?', '', '', '', 'A', '2026-06-18 08:23:08', 'essay', '', 6, '', ''),
(330, 5, 1, 6, 'Third Term', '2025/2026', 'Write three letter word ..?', '', '', '', 'A', '2026-06-18 08:25:23', 'essay', '', 6, '', '');

-- --------------------------------------------------------

--
-- Table structure for table `question_images`
--

CREATE TABLE `question_images` (
  `id` int(11) NOT NULL,
  `question_id` int(11) NOT NULL,
  `image_name` varchar(255) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `question_images`
--

INSERT INTO `question_images` (`id`, `question_id`, `image_name`, `created_at`) VALUES
(1, 50, 'basic_science_q50_1779223191_0.jpg', '2026-05-19 20:39:51'),
(2, 104, 'basic_science_third_term_2025_2026.jpg', '2026-06-01 01:31:04'),
(4, 71, 'edit_71_1781469399.jpg', '2026-06-01 02:00:10'),
(5, 148, 'basic_science_first_term_2025_2026.jpg', '2026-06-04 19:39:41'),
(6, 306, 'basic_science_third_term_2025_2026.jpg', '2026-06-13 04:30:13');

-- --------------------------------------------------------

--
-- Table structure for table `reports`
--

CREATE TABLE `reports` (
  `id` int(11) NOT NULL,
  `student_id` int(11) NOT NULL,
  `subject` varchar(255) NOT NULL,
  `message` text NOT NULL,
  `status` enum('pending','resolved','closed') DEFAULT 'pending',
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `results`
--

CREATE TABLE `results` (
  `id` int(11) NOT NULL,
  `student_id` int(11) NOT NULL,
  `admission_number` varchar(50) NOT NULL,
  `student_name` varchar(100) NOT NULL,
  `class` varchar(50) NOT NULL,
  `subject` varchar(100) NOT NULL,
  `term` varchar(20) NOT NULL,
  `session` varchar(20) NOT NULL,
  `promoted_to` varchar(100) DEFAULT NULL,
  `first_ca` int(11) DEFAULT 0,
  `second_ca` int(11) DEFAULT 0,
  `exam` int(11) DEFAULT 0,
  `total` int(11) GENERATED ALWAYS AS (`first_ca` + `second_ca` + `exam`) STORED,
  `grade` varchar(5) DEFAULT NULL,
  `remark` varchar(255) DEFAULT NULL,
  `teacher_comment` text DEFAULT NULL,
  `date_uploaded` datetime DEFAULT current_timestamp(),
  `approval_status` enum('approved','not_approved') DEFAULT 'not_approved',
  `approval_note` text DEFAULT NULL,
  `approved_by` varchar(100) DEFAULT NULL,
  `approved_at` datetime DEFAULT NULL,
  `approved` tinyint(1) NOT NULL DEFAULT 0 COMMENT '1 = approved, 0 = not approved',
  `notice` text DEFAULT NULL COMMENT 'Notice/message to show if result is not approved',
  `sms_sent` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `results`
--

INSERT INTO `results` (`id`, `student_id`, `admission_number`, `student_name`, `class`, `subject`, `term`, `session`, `promoted_to`, `first_ca`, `second_ca`, `exam`, `grade`, `remark`, `teacher_comment`, `date_uploaded`, `approval_status`, `approval_note`, `approved_by`, `approved_at`, `approved`, `notice`, `sms_sent`) VALUES
(691, 236, 'AL-B/2025/0045', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 0, -1, 'F', NULL, '', '2026-05-04 09:10:50', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(692, 232, 'AL-B/2025/0049', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 14, -1, 'F', NULL, '', '2026-05-04 09:14:23', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(693, 230, 'AL-B/2025/0051', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 16, -1, 'F', NULL, '', '2026-05-04 09:15:53', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(694, 217, 'AL-B/2025/0062', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 5, -1, 'F', NULL, '', '2026-05-04 09:17:07', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(695, 220, 'AL-B/2025/0059', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 4, -1, 'F', NULL, '', '2026-05-04 09:18:39', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(696, 223, 'AL-B/2025/0056', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 2, -1, 'F', NULL, '', '2026-05-04 09:21:04', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(697, 233, 'AL-B/2025/0048', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 1, -1, 'F', NULL, '', '2026-05-04 09:22:47', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(698, 121, 'AL-B/2025/0117', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 1, -1, 'F', NULL, '', '2026-05-04 09:27:45', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(699, 269, 'AL-B/2025/0002', '', '', 'English Language', 'Third Term', '2025/2026', '0', 15, 14, -1, 'F', NULL, '', '2026-05-04 09:29:44', 'not_approved', NULL, NULL, NULL, 0, '', 0),
(700, 209, 'AL-B/2025/0065', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 6, -1, 'F', NULL, '', '2026-05-04 09:31:04', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(701, 234, 'AL-B/2025/0047', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 0, -1, 'F', NULL, '', '2026-05-04 09:32:15', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(702, 231, 'AL-B/2025/0050', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 0, -1, 'F', NULL, '', '2026-05-04 09:33:06', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(703, 208, 'AL-B/2025/0066', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 1, -1, 'F', NULL, '', '2026-05-04 09:33:41', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(704, 204, 'AL-B/2025/0070', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 4, -1, 'F', NULL, '', '2026-05-04 09:36:12', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(705, 205, 'AL-B/2025/0069', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 5, 0, -1, 'F', NULL, '', '2026-05-04 09:37:50', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(706, 222, 'AL-B/2025/0057', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 16, -1, 'F', NULL, '', '2026-05-04 09:41:00', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(707, 235, 'AL-B/2025/0046', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 1, -1, 'F', NULL, '', '2026-05-04 09:43:07', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(708, 202, 'AL-B/2025/0071', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 8, -1, 'F', NULL, '', '2026-05-04 09:45:21', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(709, 237, 'AL-B/2025/0044', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 1, -1, 'F', NULL, '', '2026-05-04 09:46:47', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(710, 227, 'AL-B/2025/0054', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 16, -1, 'F', NULL, '', '2026-05-04 09:48:01', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(711, 228, 'AL-B/2025/0053', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 8, -1, 'F', NULL, '', '2026-05-04 09:48:58', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(712, 200, 'AL-B/2025/0073', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 4, -1, 'F', NULL, '', '2026-05-04 09:49:49', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(713, 229, 'AL-B/2025/0052', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 1, -1, 'F', NULL, '', '2026-05-04 09:51:32', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(714, 207, 'AL-B/2025/0067', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 5, 0, -1, 'F', NULL, '', '2026-05-04 09:54:04', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(715, 57, 'AL-B/2025/0168', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 12, 19, -1, 'F', NULL, '', '2026-05-05 11:26:38', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(716, 55, 'AL-B/2025/0170', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 20, 20, -1, 'D', NULL, '', '2026-05-05 11:27:11', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(717, 33, 'AL-B/2025/0190', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 16, 17, -1, 'F', NULL, '', '2026-05-05 11:27:39', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(718, 25, 'AL-B/2025/0198', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 8, 16, -1, 'F', NULL, '', '2026-05-05 11:28:13', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(719, 30, 'AL-B/2025/0193', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 20, 20, -1, 'D', NULL, '', '2026-05-05 11:29:11', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(720, 59, 'AL-B/2025/0166', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 16, 20, -1, 'F', NULL, '', '2026-05-05 11:30:03', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(721, 53, 'AL-B/2025/0171', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 20, 20, -1, 'D', NULL, '', '2026-05-06 07:29:44', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(722, 16, 'AL-B/2025/0200', '', '', 'Basic Science', 'Third Term', '2025/2026', '0', 8, 20, -1, 'F', NULL, '', '2026-05-06 07:30:05', 'not_approved', NULL, NULL, NULL, 0, '', 0),
(723, 29, 'AL-B/2025/0194', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 16, 20, -1, 'F', NULL, '', '2026-05-06 07:30:55', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(724, 27, 'AL-B/2025/0196', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 20, 20, -1, 'D', NULL, '', '2026-05-06 07:31:13', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(725, 58, 'AL-B/2025/0167', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 20, 19, -1, 'F', NULL, '', '2026-05-06 07:31:31', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(726, 32, 'AL-B/2025/0191', '', '', 'Basic Science', 'Third Term', '2025/2026', '0', 16, 14, -1, 'F', NULL, 'An excellent result. Your hard work is clearly paying off. Maintain this level of focus and continue striving for excellence.', '2026-05-06 07:31:47', 'not_approved', NULL, NULL, NULL, 0, '', 0),
(727, 56, 'AL-B/2025/0169', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 8, 14, -1, 'F', NULL, '', '2026-05-06 07:32:11', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(728, 26, 'AL-B/2025/0197', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 8, 12, -1, 'F', NULL, '', '2026-05-06 07:32:34', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(729, 28, 'AL-B/2025/0195', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 12, 14, -1, 'F', NULL, '', '2026-05-06 07:32:50', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(730, 24, 'AL-B/2025/0199', '', '', 'Basic Science', 'Third Term', '2025/2026', '0', 8, 20, -1, 'F', NULL, '', '2026-05-06 07:33:03', 'not_approved', NULL, NULL, NULL, 0, '', 0),
(731, 78, 'AL-B/2025/0150', '', '', 'English Language', 'First Term', '2025/2026', NULL, 15, -1, -1, 'F', NULL, '', '2026-05-06 08:36:37', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(732, 90, 'AL-B/2025/0141', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 5, 1, -1, 'F', NULL, '', '2026-05-06 08:37:40', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(733, 92, 'AL-B/2025/0139', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 10, 10, -1, 'F', NULL, '', '2026-05-06 08:42:11', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(734, 80, 'AL-B/2025/0148', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 5, -1, -1, 'F', NULL, '', '2026-05-06 08:43:56', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(735, 93, 'AL-B/2025/0138', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 10, 8, -1, 'F', NULL, '', '2026-05-06 08:44:38', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(736, 94, 'AL-B/2025/0137', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 10, 1, -1, 'F', NULL, '', '2026-05-06 08:45:06', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(737, 81, 'AL-B/2025/0147', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 13, -1, 'F', NULL, '', '2026-05-06 08:46:45', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(738, 95, 'AL-B/2025/0136', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 10, 8, -1, 'F', NULL, '', '2026-05-06 08:47:23', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(739, 97, 'AL-B/2025/0134', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 5, 8, -1, 'F', NULL, '', '2026-05-06 08:47:56', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(740, 84, 'AL-B/2025/0144', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 5, 3, -1, 'F', NULL, '', '2026-05-06 08:48:51', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(741, 88, 'AL-B/2025/0143', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 15, -1, 'F', NULL, '', '2026-05-06 08:49:25', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(742, 98, 'AL-B/2025/0133', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 10, 1, -1, 'F', NULL, '', '2026-05-06 08:50:18', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(743, 89, 'AL-B/2025/0142', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 5, 20, -1, 'F', NULL, '', '2026-05-06 08:51:37', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(744, 276, 'AL-B/2025/0006', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 15, -1, 'F', NULL, '', '2026-05-06 08:52:11', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(745, 283, 'AL-B/2025/0021', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 8, -1, 'F', NULL, '', '2026-05-06 08:52:39', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(746, 45, 'AL-B/2025/0178', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 9, 16, -1, 'F', NULL, '', '2026-05-11 09:52:13', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(747, 38, 'AL-B/2025/0185', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 9, 8, -1, 'F', NULL, '', '2026-05-11 09:53:07', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(748, 40, 'AL-B/2025/0183', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 20, 8, -1, 'F', NULL, '', '2026-05-11 09:53:48', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(750, 36, 'AL-B/2025/0187', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 13, 8, -1, 'F', NULL, '', '2026-05-11 09:55:22', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(751, 62, 'AL-B/2025/0163', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 9, 0, -1, 'F', NULL, '', '2026-05-11 09:56:00', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(752, 47, 'AL-B/2025/0176', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 13, 8, -1, 'F', NULL, '', '2026-05-11 09:57:15', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(753, 43, 'AL-B/2025/0180', '', '', 'Basic Science', 'Third Term', '2025/2026', '0', 20, 12, -1, 'F', NULL, '', '2026-05-11 09:59:54', 'not_approved', NULL, NULL, NULL, 0, '', 0),
(754, 49, 'AL-B/2025/0174', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 17, 4, -1, 'F', NULL, '', '2026-05-11 10:00:24', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(755, 248, 'AL-B/2025/0042', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 13, 0, -1, 'F', NULL, '', '2026-05-11 10:00:48', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(756, 34, 'AL-B/2025/0189', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 20, 16, -1, 'F', NULL, '', '2026-05-11 10:01:10', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(757, 247, 'AL-B/2025/0041', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 17, 8, -1, 'F', NULL, '', '2026-05-11 10:01:41', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(758, 250, 'AL-B/2025/0172', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 20, 12, -1, 'F', NULL, '', '2026-05-11 10:02:01', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(759, 60, 'AL-B/2025/0165', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 20, 16, -1, 'F', NULL, '', '2026-05-11 10:02:20', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(760, 39, 'AL-B/2025/0184', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 20, 20, -1, 'D', NULL, '', '2026-05-11 10:02:52', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(761, 50, 'AL-B/2025/0173', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 20, 12, -1, 'F', NULL, '', '2026-05-11 10:03:10', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(762, 42, 'AL-B/2025/0181', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 20, 20, -1, 'D', NULL, '', '2026-05-11 10:03:45', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(763, 126, 'AL-B/2025/0115', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 5, 20, -1, 'F', NULL, '', '2026-05-12 07:25:56', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(764, 136, 'AL-B/2025/0106', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 15, -1, 'F', NULL, '', '2026-05-12 07:27:04', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(765, 145, 'AL-B/2025/0097', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 10, -1, 'F', NULL, '', '2026-05-12 07:28:53', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(766, 144, 'AL-B/2025/0101', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 0, -1, 'F', NULL, '', '2026-05-12 07:29:22', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(767, 125, 'AL-B/2025/0114', '', '', 'English Language', 'Third Term', '2025/2026', '0', 20, 0, -1, 'F', NULL, '', '2026-05-12 07:30:26', 'not_approved', NULL, NULL, NULL, 0, '', 0),
(768, 149, 'AL-B/2025/0100', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 20, -1, 'F', NULL, '', '2026-05-12 07:31:54', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(769, 128, 'AL-B/2025/0112', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 20, -1, 'F', NULL, '', '2026-05-12 07:32:31', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(770, 146, 'AL-B/2025/0099', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 20, 0, -1, 'F', NULL, '', '2026-05-12 07:33:00', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(771, 120, 'AL-B/2025/0118', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 14, -1, 'F', NULL, '', '2026-05-12 07:33:24', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(772, 130, 'AL-B/2025/0110', '', '', 'English Language', 'Third Term', '2025/2026', '0', 1, 7, -1, 'F', NULL, '', '2026-05-12 07:36:37', 'not_approved', NULL, NULL, NULL, 0, '', 1),
(773, 57, 'AL-B/2025/0168', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 4, -1, -1, 'F', NULL, '', '2026-05-12 08:08:46', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(774, 55, 'AL-B/2025/0170', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 8, -1, -1, 'F', NULL, '', '2026-05-12 08:09:30', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(775, 33, 'AL-B/2025/0190', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 4, -1, -1, 'F', NULL, '', '2026-05-12 08:10:07', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(776, 25, 'AL-B/2025/0198', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-05-12 08:10:49', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(777, 30, 'AL-B/2025/0193', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 4, -1, -1, 'F', NULL, '', '2026-05-12 08:11:19', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(778, 32, 'AL-B/2025/0191', '', '', 'English Language', 'Third Term', '2025/2026', '0', 4, -1, -1, 'F', NULL, 'An excellent result. Your hard work is clearly paying off. Maintain this level of focus and continue striving for excellence.', '2026-05-12 08:11:56', 'not_approved', NULL, NULL, NULL, 0, '', 0),
(779, 26, 'AL-B/2025/0197', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 4, -1, -1, 'F', NULL, '', '2026-05-12 08:12:23', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(780, 27, 'AL-B/2025/0196', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, -1, -1, 'F', NULL, '', '2026-05-12 08:12:56', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(781, 16, 'AL-B/2025/0200', '', '', 'English Language', 'Third Term', '2025/2026', '0', 1, -1, -1, 'F', NULL, '', '2026-05-12 08:13:34', 'not_approved', NULL, NULL, NULL, 0, '', 0),
(782, 28, 'AL-B/2025/0195', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 4, -1, -1, 'F', NULL, '', '2026-05-12 08:14:11', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(783, 56, 'AL-B/2025/0169', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 4, -1, -1, 'F', NULL, '', '2026-05-12 08:14:36', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(784, 58, 'AL-B/2025/0167', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, -1, -1, 'F', NULL, '', '2026-05-12 08:15:18', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(785, 53, 'AL-B/2025/0171', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 8, -1, -1, 'F', NULL, '', '2026-05-12 08:16:25', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(786, 29, 'AL-B/2025/0194', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 8, -1, -1, 'F', NULL, '', '2026-05-12 08:16:52', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(788, 34, 'AL-B/2025/0189', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 15, 16, -1, 'F', NULL, '', '2026-05-12 10:40:04', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(789, 247, 'AL-B/2025/0041', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 10, 12, -1, 'F', NULL, '', '2026-05-12 10:40:27', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(790, 42, 'AL-B/2025/0181', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 10, 16, -1, 'F', NULL, '', '2026-05-12 10:40:43', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(791, 248, 'AL-B/2025/0042', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, 8, -1, 'F', NULL, '', '2026-05-12 10:41:07', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(792, 38, 'AL-B/2025/0185', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 1, 14, -1, 'F', NULL, '', '2026-05-12 10:41:34', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(793, 60, 'AL-B/2025/0165', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 10, 20, -1, 'F', NULL, '', '2026-05-12 10:41:59', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(794, 43, 'AL-B/2025/0180', '', '', 'PHE', 'Third Term', '2025/2026', '0', 4, 8, -1, 'F', NULL, '', '2026-05-12 10:42:37', 'not_approved', NULL, NULL, NULL, 0, '', 0),
(795, 40, 'AL-B/2025/0183', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 15, 12, -1, 'F', NULL, '', '2026-05-12 10:44:07', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(796, 45, 'AL-B/2025/0178', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 1, 10, -1, 'F', NULL, '', '2026-05-12 10:44:30', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(797, 47, 'AL-B/2025/0176', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 1, 8, -1, 'F', NULL, '', '2026-05-12 10:45:33', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(798, 37, 'AL-B/2025/0186', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 15, 16, -1, 'F', NULL, '', '2026-05-12 10:46:20', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(799, 36, 'AL-B/2025/0187', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 15, 14, -1, 'F', NULL, '', '2026-05-12 10:47:03', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(800, 257, 'AL-B/2025/0164', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 15, 12, -1, 'F', NULL, '', '2026-05-12 10:47:53', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(801, 46, 'AL-B/2025/0177', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 14, 8, -1, 'F', NULL, '', '2026-05-12 10:48:52', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(802, 39, 'AL-B/2025/0184', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 15, 0, -1, 'F', NULL, '', '2026-05-12 10:49:31', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(803, 62, 'AL-B/2025/0163', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 15, 8, -1, 'F', NULL, '', '2026-05-12 10:50:18', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(804, 48, 'AL-B/2025/0175', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, 12, -1, 'F', NULL, '', '2026-05-12 10:52:32', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(805, 78, 'AL-B/2025/0150', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 15, 8, -1, 'F', NULL, '', '2026-05-13 10:54:31', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(806, 77, 'AL-B/2025/0151', '', '', 'English Language', 'Third Term', '2025/2026', '0', 1, 13, -1, 'F', NULL, '', '2026-05-13 11:00:05', 'not_approved', NULL, NULL, NULL, 0, '', 0),
(807, 75, 'AL-B/2025/0153', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 18, -1, 'F', NULL, '', '2026-05-13 11:01:17', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(808, 79, 'AL-B/2025/0149', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 18, -1, 'F', NULL, '', '2026-05-13 11:04:15', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(809, 91, 'AL-B/2025/0140', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 10, -1, 'F', NULL, '', '2026-05-13 11:06:07', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(810, 96, 'AL-B/2025/0135', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 8, -1, 'F', NULL, '', '2026-05-13 11:12:22', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(811, 82, 'AL-B/2025/0146', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 1, -1, 'F', NULL, '', '2026-05-13 11:13:13', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(812, 83, 'AL-B/2025/0145', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 5, -1, 'F', NULL, '', '2026-05-13 11:14:16', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(813, 31, 'AL-B/2025/0192', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 1, 20, -1, 'F', NULL, '', '2026-05-14 11:16:42', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(814, 0, 'AL-B/2025/0180', '', '', 'Civic Education', 'Third Term', '2025/2026', '0', 15, -1, -1, 'F', NULL, '', '2026-05-21 01:08:53', 'not_approved', NULL, NULL, NULL, 0, '', 0),
(815, 0, 'AL-B/2025/0072', '', '', 'English Language', 'Third Term', '2026/2027', NULL, 2, -1, -1, 'F', NULL, '', '2026-05-21 08:42:20', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(816, 0, 'AL-B/2025/0072', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 2, -1, 'F', NULL, '', '2026-05-21 08:44:48', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(817, 0, '', '', '', '', '', '', NULL, 0, -1, -1, NULL, NULL, NULL, '2026-05-21 09:45:34', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(818, 0, '', '', '', '', '', '', NULL, 0, -1, -1, NULL, NULL, NULL, '2026-05-21 09:45:34', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(819, 0, 'AL-B/2025/0058', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 16, -1, 'F', NULL, '', '2026-05-21 08:53:35', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(820, 0, 'AL-B/2025/0060', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 4, -1, 'F', NULL, '', '2026-05-21 08:56:40', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(821, 0, 'AL-B/2025/0061', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 12, -1, 'F', NULL, '', '2026-05-21 08:58:46', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(822, 0, 'AL-B/2025/0068', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 1, -1, 'F', NULL, '', '2026-05-21 09:10:10', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(823, 0, 'AL-B/2025/0064', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 1, 1, -1, 'F', NULL, '', '2026-05-21 09:13:14', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(825, 0, 'AL-B/2025/0189', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 14, -1, -1, 'F', NULL, '', '2026-05-22 08:05:29', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(831, 0, 'AL-B/2025/0164', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 9, 8, -1, 'F', NULL, '', '2026-06-01 10:11:37', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(832, 0, 'AL-B/2025/0186', '', '', 'Basic Science', 'Third Term', '2025/2026', NULL, 9, 8, -1, 'F', NULL, '', '2026-06-01 10:12:30', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(833, 0, 'AL-B/2025/0168', '', '', 'IRS', 'Third Term', '2026/2027', NULL, 6, 4, -1, 'F', NULL, '', '2026-06-04 07:34:07', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(834, 0, 'AL-B/2025/0170', '', '', 'IRS', 'Third Term', '2026/2027', NULL, 11, 1, -1, 'F', NULL, '', '2026-06-04 07:35:13', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(835, 0, 'AL-B/2025/0190', '', '', 'IRS', 'Third Term', '2026/2027', NULL, 6, 8, -1, 'F', NULL, '', '2026-06-04 07:36:07', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(836, 0, 'AL-B/2025/0198', '', '', 'IRS', 'Third Term', '2026/2027', NULL, 3, 1, -1, 'F', NULL, '', '2026-06-04 07:36:55', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(837, 0, 'AL-B/2025/0193', '', '', 'IRS', 'Third Term', '2026/2027', NULL, 10, 1, -1, 'F', NULL, '', '2026-06-04 07:37:41', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(838, 0, 'AL-B/2025/0166', '', '', 'IRS', 'Third Term', '2026/2027', NULL, 9, 4, -1, 'F', NULL, '', '2026-06-04 07:38:44', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(839, 0, 'AL-B/2025/0192', '', '', 'IRS', 'Third Term', '2026/2027', NULL, 1, 1, -1, 'F', NULL, '', '2026-06-04 07:39:25', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(840, 0, 'AL-B/2025/0191', '', '', 'IRS', 'Third Term', '2026/2027', NULL, 13, 4, -1, 'F', NULL, '', '2026-06-04 07:40:19', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(841, 0, 'AL-B/2025/0197', '', '', 'IRS', 'Third Term', '2026/2027', NULL, 1, 4, -1, 'F', NULL, '', '2026-06-04 07:40:57', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(842, 0, 'AL-B/2025/0196', '', '', 'IRS', 'Third Term', '2026/2027', NULL, 12, 8, -1, 'F', NULL, '', '2026-06-04 07:41:37', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(843, 0, 'AL-B/2025/0200', '', '', 'IRS', 'Third Term', '2026/2027', NULL, 8, 4, -1, 'F', NULL, '', '2026-06-04 07:42:08', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(849, 0, 'AL-B/2025/0148', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-04 09:08:02', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(850, 0, 'AL-B/2025/0145', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-04 09:09:02', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(851, 0, 'AL-B/2025/0142', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 15, -1, -1, 'F', NULL, '', '2026-06-04 09:09:41', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(852, 0, 'AL-B/2025/0133', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 5, -1, -1, 'F', NULL, '', '2026-06-04 09:12:39', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(853, 0, 'AL-B/2025/0143', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 5, -1, -1, 'F', NULL, '', '2026-06-04 09:14:52', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(854, 0, 'AL-B/2025/0144', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 1, -1, -1, 'F', NULL, '', '2026-06-04 09:15:28', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(855, 0, 'AL-B/2025/0136', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 15, -1, -1, 'F', NULL, '', '2026-06-04 09:16:43', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(856, 0, 'AL-B/2025/0147', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-04 09:17:49', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(857, 0, 'AL-B/2025/0138', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 5, -1, -1, 'F', NULL, '', '2026-06-04 09:19:04', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(858, 0, 'AL-B/2025/0150', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 15, -1, -1, 'F', NULL, '', '2026-06-04 09:19:47', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(859, 0, 'AL-B/2025/0152', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 1, -1, -1, 'F', NULL, '', '2026-06-04 09:20:34', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(860, 0, 'AL-B/2025/0151', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 5, -1, -1, 'F', NULL, '', '2026-06-04 09:21:33', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(861, 0, 'AL-B/2025/0153', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 15, -1, -1, 'F', NULL, '', '2026-06-04 09:22:02', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(862, 0, 'AL-B/2025/0149', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-04 09:22:43', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(863, 0, 'AL-B/2025/0139', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 5, -1, -1, 'F', NULL, '', '2026-06-04 09:23:57', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(864, 0, 'AL-B/2025/0140', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-04 09:24:28', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(865, 0, 'AL-B/2025/0135', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-04 09:25:03', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(866, 0, 'AL-B/2025/0146', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-04 09:25:41', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(867, 0, 'AL-B/2025/0134', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 15, -1, -1, 'F', NULL, '', '2026-06-04 09:26:21', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(868, 0, 'AL-B/2025/0200', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, 19, -1, 'F', NULL, '', '2026-06-08 11:12:08', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(869, 0, 'AL-B/2025/0190', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, 10, -1, 'F', NULL, '', '2026-06-08 11:12:30', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(870, 0, 'AL-B/2025/0196', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 20, 18, -1, 'F', NULL, '', '2026-06-08 11:12:46', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(871, 0, 'AL-B/2025/0167', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, 20, -1, 'F', NULL, '', '2026-06-08 11:13:01', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(872, 0, 'AL-B/2025/0193', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, 20, -1, 'F', NULL, '', '2026-06-08 11:13:16', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(873, 0, 'AL-B/2025/0195', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, 10, -1, 'F', NULL, '', '2026-06-08 11:13:31', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(874, 0, 'AL-B/2025/0197', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-08 11:13:52', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(875, 0, 'AL-B/2025/0191', '', '', 'PHE', 'Third Term', '2025/2026', '0', 12, 15, -1, 'F', NULL, 'An excellent result. Your hard work is clearly paying off. Maintain this level of focus and continue striving for excellence.', '2026-06-08 11:14:04', 'not_approved', NULL, NULL, NULL, 0, '', 0),
(876, 0, 'AL-B/2025/0198', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, 17, -1, 'F', NULL, '', '2026-06-08 11:14:21', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(877, 0, 'AL-B/2025/0170', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 8, 10, -1, 'F', NULL, '', '2026-06-08 11:14:42', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(878, 0, 'AL-B/2025/0166', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 8, 17, -1, 'F', NULL, '', '2026-06-08 11:14:53', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(879, 0, 'AL-B/2025/0194', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, 10, -1, 'F', NULL, '', '2026-06-08 11:15:15', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(880, 0, 'AL-B/2025/0168', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 8, 12, -1, 'F', NULL, '', '2026-06-19 10:52:16', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(881, 0, 'AL-B/2025/0169', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 8, 13, -1, 'F', NULL, '', '2026-06-08 11:15:43', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(882, 0, 'AL-B/2025/0072', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 5, 10, -1, 'F', NULL, '', '2026-06-09 08:49:44', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(883, 0, 'AL-B/2025/0093', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 20, -1, -1, 'F', NULL, '', '2026-06-09 11:15:54', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(884, 0, 'AL-B/2025/0114', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-09 11:16:32', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(885, 0, 'AL-B/2025/0118', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-09 11:17:20', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(886, 0, 'AL-B/2025/0106', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-09 11:17:51', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(887, 0, 'AL-B/2025/0115', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 20, -1, -1, 'F', NULL, '', '2026-06-09 11:18:09', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(888, 0, 'AL-B/2025/0113', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 20, -1, -1, 'F', NULL, '', '2026-06-09 11:18:41', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(889, 0, 'AL-B/2025/0112', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-09 11:19:05', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(890, 0, 'AL-B/2025/0104', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-09 11:19:22', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(891, 0, 'AL-B/2025/0110', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-09 11:20:20', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(892, 0, 'AL-B/2025/0101', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-09 11:20:50', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(893, 0, 'AL-B/2025/0097', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-09 11:21:27', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(894, 0, 'AL-B/2025/0109', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-09 11:22:04', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(895, 0, 'AL-B/2025/0034', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-09 11:22:27', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(896, 0, 'AL-B/2025/0095', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 20, -1, -1, 'F', NULL, '', '2026-06-09 11:22:49', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(897, 0, 'AL-B/2025/0099', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 20, -1, -1, 'F', NULL, '', '2026-06-09 11:23:44', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(898, 0, 'AL-B/2025/0096', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-09 11:24:12', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(899, 0, 'AL-B/2025/0098', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 20, -1, -1, 'F', NULL, '', '2026-06-09 11:24:55', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(900, 0, 'AL-B/2025/0100', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 20, -1, -1, 'F', NULL, '', '2026-06-09 11:25:48', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(901, 0, 'AL-B/2025/0010', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-09 11:26:24', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(902, 62, 'AL-B/2025/0163', '', '', 'Computer', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-14 23:46:30', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(903, 122, 'AL-B/2025/0116', '', '', 'Basic Science', 'Third Term', '2025/2026', '0', 2, -1, -1, 'F', NULL, '', '2026-06-14 23:47:54', 'not_approved', NULL, NULL, NULL, 0, '', 1),
(905, 48, 'AL-B/2025/0175', '', '', 'Basic science', 'Third Term', '2025/2026', NULL, 1, 8, -1, 'F', NULL, '', '2026-06-15 00:27:36', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(906, 35, 'AL-B/2025/0188', '', '', 'Basic science', 'Third Term', '2025/2026', NULL, 6, 8, -1, 'F', NULL, '', '2026-06-15 00:29:33', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(907, 44, 'AL-B/2025/0179', '', '', 'Basic science', 'Third Term', '2025/2026', NULL, 17, 20, -1, 'F', NULL, '', '2026-06-15 00:31:56', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(908, 44, 'AL-B/2025/0179', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 15, 16, -1, 'F', NULL, '', '2026-06-15 00:32:03', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(909, 55, 'AL-B/2025/0170', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 8, -1, -1, 'F', NULL, '', '2026-06-17 08:54:26', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(910, 33, 'AL-B/2025/0190', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 15, -1, -1, 'F', NULL, '', '2026-06-17 08:56:18', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(911, 25, 'AL-B/2025/0198', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-17 08:57:10', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(912, 30, 'AL-B/2025/0193', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-17 08:57:44', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(913, 59, 'AL-B/2025/0166', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-17 08:58:12', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(914, 26, 'AL-B/2025/0197', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 8, -1, -1, 'F', NULL, '', '2026-06-17 08:59:07', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(915, 27, 'AL-B/2025/0196', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 11, -1, -1, 'F', NULL, '', '2026-06-17 08:59:47', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(916, 16, 'AL-B/2025/0200', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-17 09:00:11', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(917, 28, 'AL-B/2025/0195', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-17 09:00:38', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(918, 56, 'AL-B/2025/0169', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 7, -1, -1, 'F', NULL, '', '2026-06-17 09:01:05', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(919, 58, 'AL-B/2025/0167', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-17 09:01:25', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(920, 53, 'AL-B/2025/0171', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-17 09:02:05', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(921, 29, 'AL-B/2025/0194', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 11, -1, -1, 'F', NULL, '', '2026-06-17 09:02:24', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(922, 91, 'AL-B/2025/0140', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-17 10:07:51', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(923, 92, 'AL-B/2025/0139', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-17 10:08:05', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(924, 81, 'AL-B/2025/0147', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-17 10:08:37', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(925, 84, 'AL-B/2025/0144', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 8, -1, -1, 'F', NULL, '', '2026-06-17 10:09:08', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(926, 89, 'AL-B/2025/0142', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-17 10:09:33', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(927, 82, 'AL-B/2025/0146', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 20, -1, -1, 'F', NULL, '', '2026-06-17 10:09:51', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(928, 75, 'AL-B/2025/0153', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-17 10:10:08', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(929, 83, 'AL-B/2025/0145', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-17 10:10:26', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(930, 95, 'AL-B/2025/0136', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-17 10:10:56', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(931, 93, 'AL-B/2025/0138', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-17 10:11:20', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(932, 97, 'AL-B/2025/0134', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-17 10:11:37', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(933, 79, 'AL-B/2025/0149', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 8, -1, -1, 'F', NULL, '', '2026-06-17 10:11:50', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(934, 276, 'AL-B/2025/0006', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-17 10:12:27', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(935, 98, 'AL-B/2025/0133', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-17 10:12:54', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(936, 90, 'AL-B/2025/0141', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-17 10:13:08', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(937, 77, 'AL-B/2025/0151', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-17 10:13:21', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(938, 88, 'AL-B/2025/0143', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 20, -1, -1, 'F', NULL, '', '2026-06-17 10:13:35', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(939, 41, 'AL-B/2025/0182', '', '', 'Basic science', 'Third Term', '2025/2026', NULL, 0, 0, -1, 'F', NULL, '', '2026-06-17 10:20:05', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(940, 255, 'AL-B/2025/0039', '', '', 'Basic science', 'Third Term', '2025/2026', NULL, 0, 0, -1, 'F', NULL, '', '2026-06-17 10:21:09', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(941, 246, 'AL-B/2025/0040', '', '', 'Basic science', 'Third Term', '2025/2026', NULL, 0, 12, -1, 'F', NULL, '', '2026-06-17 10:22:09', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(942, 46, 'AL-B/2025/0177', '', '', 'Basic science', 'Third Term', '2025/2026', NULL, 0, 8, -1, 'F', NULL, '', '2026-06-17 10:22:49', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(943, 35, 'AL-B/2025/0188', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 4, 12, -1, 'F', NULL, '', '2026-06-17 10:25:44', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(944, 41, 'AL-B/2025/0182', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 0, 0, -1, 'F', NULL, '', '2026-06-17 10:31:06', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(945, 255, 'AL-B/2025/0039', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 0, 0, -1, 'F', NULL, '', '2026-06-17 10:32:00', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(946, 246, 'AL-B/2025/0040', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 10, 12, -1, 'F', NULL, '', '2026-06-17 10:33:13', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(947, 250, 'AL-B/2025/0172', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 0, 12, -1, 'F', NULL, '', '2026-06-17 10:34:22', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(948, 50, 'AL-B/2025/0173', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 16, 14, -1, 'F', NULL, '', '2026-06-17 10:35:00', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(949, 49, 'AL-B/2025/0174', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 12, 12, -1, 'F', NULL, '', '2026-06-17 10:35:36', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(950, 139, 'AL-B/2025/0103', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 0, -1, 'F', NULL, '', '2026-06-18 08:29:15', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(951, 137, 'AL-B/2025/0105', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 0, -1, 'F', NULL, '', '2026-06-18 08:35:53', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(952, 282, 'AL-B/2025/0010', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 20, -1, 'F', NULL, '', '2026-06-18 08:47:32', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(953, 143, 'AL-B/2025/0102', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 0, -1, 'F', NULL, '', '2026-06-18 08:49:16', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(954, 148, 'AL-B/2025/0098', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 20, -1, 'F', NULL, '', '2026-06-18 08:49:58', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(955, 135, 'AL-B/2025/0096', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 0, -1, 'F', NULL, '', '2026-06-18 08:52:06', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(956, 132, 'AL-B/2025/0109', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 20, -1, 'F', NULL, '', '2026-06-18 08:53:34', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(957, 154, 'AL-B/2025/0094', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-18 08:55:11', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(958, 153, 'AL-B/2025/0095', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 12, -1, 'F', NULL, '', '2026-06-18 08:56:26', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(959, 262, 'AL-B/2025/0034', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 20, -1, 'F', NULL, '', '2026-06-18 08:57:02', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(960, 259, 'AL-B/2025/0037', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 0, -1, 'F', NULL, '', '2026-06-18 08:57:53', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(961, 134, 'AL-B/2025/0107', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 0, -1, 'F', NULL, '', '2026-06-18 08:58:32', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(962, 127, 'AL-B/2025/0113', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 20, -1, 'F', NULL, '', '2026-06-18 08:59:01', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(963, 280, 'AL-B/2025/0008', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 12, -1, 'F', NULL, '', '2026-06-18 09:00:04', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(964, 156, 'AL-B/2025/0093', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 15, -1, 'F', NULL, '', '2026-06-18 09:01:53', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(965, 138, 'AL-B/2025/0104', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 10, -1, 'F', NULL, '', '2026-06-18 09:02:28', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(966, 147, 'AL-B/2025/0108', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 0, -1, 'F', NULL, '', '2026-06-18 09:04:19', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(967, 201, 'AL-B/2025/0072', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-18 09:08:39', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(968, 205, 'AL-B/2025/0069', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 5, -1, -1, 'F', NULL, '', '2026-06-18 09:10:35', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(969, 202, 'AL-B/2025/0071', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-18 09:11:17', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(970, 221, 'AL-B/2025/0058', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-18 09:11:51', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(971, 219, 'AL-B/2025/0060', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-18 09:12:28', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(972, 231, 'AL-B/2025/0050', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-18 09:13:03', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(973, 218, 'AL-B/2025/0061', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-18 09:13:37', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(974, 226, 'AL-B/2025/0055', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-18 09:14:16', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(975, 207, 'AL-B/2025/0067', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-18 09:14:46', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(976, 121, 'AL-B/2025/0117', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-18 09:15:07', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(977, 233, 'AL-B/2025/0048', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 8, -1, -1, 'F', NULL, '', '2026-06-18 09:15:39', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(978, 209, 'AL-B/2025/0065', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-18 09:16:03', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(979, 220, 'AL-B/2025/0059', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 5, -1, -1, 'F', NULL, '', '2026-06-18 09:16:24', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(980, 229, 'AL-B/2025/0052', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-18 09:16:48', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(981, 237, 'AL-B/2025/0044', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-18 09:17:24', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(982, 228, 'AL-B/2025/0053', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-18 09:17:49', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(983, 206, 'AL-B/2025/0068', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-18 09:18:24', 'not_approved', NULL, NULL, NULL, 0, NULL, 0);
INSERT INTO `results` (`id`, `student_id`, `admission_number`, `student_name`, `class`, `subject`, `term`, `session`, `promoted_to`, `first_ca`, `second_ca`, `exam`, `grade`, `remark`, `teacher_comment`, `date_uploaded`, `approval_status`, `approval_note`, `approved_by`, `approved_at`, `approved`, `notice`, `sms_sent`) VALUES
(984, 222, 'AL-B/2025/0057', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-18 09:19:02', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(985, 232, 'AL-B/2025/0049', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-18 09:19:24', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(986, 204, 'AL-B/2025/0070', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 11, -1, -1, 'F', NULL, '', '2026-06-18 09:20:03', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(987, 211, 'AL-B/2025/0064', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-18 09:20:30', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(988, 227, 'AL-B/2025/0054', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 11, -1, -1, 'F', NULL, '', '2026-06-18 09:21:00', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(989, 230, 'AL-B/2025/0051', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-18 09:21:37', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(990, 200, 'AL-B/2025/0073', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-18 09:22:07', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(991, 235, 'AL-B/2025/0046', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-18 09:22:30', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(992, 223, 'AL-B/2025/0056', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-18 09:22:57', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(993, 208, 'AL-B/2025/0066', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-18 09:23:21', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(994, 236, 'AL-B/2025/0045', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-18 09:23:44', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(995, 269, 'AL-B/2025/0002', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 11, -1, -1, 'F', NULL, '', '2026-06-18 09:24:13', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(996, 234, 'AL-B/2025/0047', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-18 09:24:36', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(997, 216, 'AL-B/2025/0063', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-18 09:24:57', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(998, 217, 'AL-B/2025/0062', '', '', 'IRS', 'Third Term', '2025/2026', NULL, 16, -1, -1, 'F', NULL, '', '2026-06-18 09:25:22', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(999, 226, 'AL-B/2025/0055', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 0, -1, 'F', NULL, '', '2026-06-18 09:32:37', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1000, 216, 'AL-B/2025/0063', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, 0, -1, 'F', NULL, '', '2026-06-18 09:43:57', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1001, 35, 'AL-B/2025/0188', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 14, -1, -1, 'F', NULL, '', '2026-06-18 09:47:33', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1002, 62, 'AL-B/2025/0163', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-18 09:48:30', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1003, 44, 'AL-B/2025/0179', '', '', 'English Language', 'Third Term', '2025/2026', NULL, 14, -1, -1, 'F', NULL, '', '2026-06-18 09:48:51', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1004, 53, 'AL-B/2025/0171', '', '', 'PHE', 'Third Term', '2025/2026', NULL, 0, 6, -1, 'F', NULL, '', '2026-06-19 07:45:29', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1005, 91, 'AL-B/2025/0140', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 11, -1, -1, 'F', NULL, '', '2026-06-19 08:26:17', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1006, 92, 'AL-B/2025/0139', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-19 08:29:41', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1007, 81, 'AL-B/2025/0147', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 11, -1, -1, 'F', NULL, '', '2026-06-19 08:30:04', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1008, 84, 'AL-B/2025/0144', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 8, -1, -1, 'F', NULL, '', '2026-06-19 08:30:39', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1009, 80, 'AL-B/2025/0148', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-19 08:31:03', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1010, 89, 'AL-B/2025/0142', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-19 08:31:35', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1011, 82, 'AL-B/2025/0146', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 7, -1, -1, 'F', NULL, '', '2026-06-19 08:32:18', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1012, 75, 'AL-B/2025/0153', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-19 08:32:44', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1013, 83, 'AL-B/2025/0145', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 13, -1, -1, 'F', NULL, '', '2026-06-19 08:34:07', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1014, 95, 'AL-B/2025/0136', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-19 08:35:06', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1015, 93, 'AL-B/2025/0138', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-19 08:41:36', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1016, 283, 'AL-B/2025/0021', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-19 08:42:04', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1017, 97, 'AL-B/2025/0134', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-19 08:42:32', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1018, 79, 'AL-B/2025/0149', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 13, -1, -1, 'F', NULL, '', '2026-06-19 08:43:00', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1019, 76, 'AL-B/2025/0152', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 5, -1, -1, 'F', NULL, '', '2026-06-19 08:43:35', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1020, 276, 'AL-B/2025/0006', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 13, -1, -1, 'F', NULL, '', '2026-06-19 08:44:05', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1021, 94, 'AL-B/2025/0137', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-19 08:44:30', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1022, 98, 'AL-B/2025/0133', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-19 08:44:52', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1023, 90, 'AL-B/2025/0141', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 13, -1, -1, 'F', NULL, '', '2026-06-19 08:45:28', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1024, 77, 'AL-B/2025/0151', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 10, -1, -1, 'F', NULL, '', '2026-06-19 08:45:51', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1025, 88, 'AL-B/2025/0143', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 13, -1, -1, 'F', NULL, '', '2026-06-19 08:46:32', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1026, 96, 'AL-B/2025/0135', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-19 08:47:13', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1027, 78, 'AL-B/2025/0150', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-19 08:47:43', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1028, 35, 'AL-B/2025/0188', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-19 08:53:09', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1029, 62, 'AL-B/2025/0163', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-19 08:53:31', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1030, 44, 'AL-B/2025/0179', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 5, -1, -1, 'F', NULL, '', '2026-06-19 08:54:02', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1031, 48, 'AL-B/2025/0175', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-19 08:54:25', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1032, 36, 'AL-B/2025/0187', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 5, -1, -1, 'F', NULL, '', '2026-06-19 08:55:07', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1033, 248, 'AL-B/2025/0042', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-19 08:56:00', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1034, 257, 'AL-B/2025/0164', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-19 08:56:35', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1035, 60, 'AL-B/2025/0165', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-19 08:57:47', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1036, 247, 'AL-B/2025/0041', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-19 08:58:10', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1037, 37, 'AL-B/2025/0186', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-19 08:58:38', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1038, 41, 'AL-B/2025/0182', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-19 08:58:58', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1039, 42, 'AL-B/2025/0181', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-19 08:59:40', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1040, 45, 'AL-B/2025/0178', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 5, -1, -1, 'F', NULL, '', '2026-06-19 09:00:06', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1041, 255, 'AL-B/2025/0039', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 0, -1, -1, 'F', NULL, '', '2026-06-19 09:00:28', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1042, 38, 'AL-B/2025/0185', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 5, -1, -1, 'F', NULL, '', '2026-06-19 09:00:57', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1043, 43, 'AL-B/2025/0180', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 5, -1, -1, 'F', NULL, '', '2026-06-19 09:01:21', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1044, 246, 'AL-B/2025/0040', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-19 09:01:47', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1045, 39, 'AL-B/2025/0184', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 12, -1, -1, 'F', NULL, '', '2026-06-19 09:02:16', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1046, 46, 'AL-B/2025/0177', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-19 09:02:32', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1047, 250, 'AL-B/2025/0172', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 3, -1, -1, 'F', NULL, '', '2026-06-19 09:03:09', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1048, 47, 'AL-B/2025/0176', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-19 09:03:25', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1049, 50, 'AL-B/2025/0173', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-19 09:03:45', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1050, 34, 'AL-B/2025/0189', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-19 09:04:05', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1051, 49, 'AL-B/2025/0174', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 8, -1, -1, 'F', NULL, '', '2026-06-19 09:04:26', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1052, 40, 'AL-B/2025/0183', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 6, -1, -1, 'F', NULL, '', '2026-06-19 09:04:58', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1053, 205, 'AL-B/2025/0069', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 5, 5, -1, 'F', NULL, '', '2026-06-19 09:10:53', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1054, 202, 'AL-B/2025/0071', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 13, 10, -1, 'F', NULL, '', '2026-06-19 10:56:20', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1055, 221, 'AL-B/2025/0058', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 15, 10, -1, 'F', NULL, '', '2026-06-19 09:57:05', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1056, 219, 'AL-B/2025/0060', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 15, 5, -1, 'F', NULL, '', '2026-06-19 10:00:14', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1057, 231, 'AL-B/2025/0050', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 5, 5, -1, 'F', NULL, '', '2026-06-19 10:01:27', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1058, 218, 'AL-B/2025/0061', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 0, 0, -1, 'F', NULL, '', '2026-06-19 10:02:22', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1059, 226, 'AL-B/2025/0055', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 7, 6, -1, 'F', NULL, '', '2026-06-19 10:03:09', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1060, 207, 'AL-B/2025/0067', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 9, 5, -1, 'F', NULL, '', '2026-06-19 10:04:23', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1061, 121, 'AL-B/2025/0117', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 15, 5, -1, 'F', NULL, '', '2026-06-19 10:05:48', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1062, 233, 'AL-B/2025/0048', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 10, 5, -1, 'F', NULL, '', '2026-06-19 10:06:52', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1063, 209, 'AL-B/2025/0065', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 11, 6, -1, 'F', NULL, '', '2026-06-19 10:07:45', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1064, 220, 'AL-B/2025/0059', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 12, 10, -1, 'F', NULL, '', '2026-06-19 10:10:23', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1065, 229, 'AL-B/2025/0052', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 10, 5, -1, 'F', NULL, '', '2026-06-19 10:14:44', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1066, 237, 'AL-B/2025/0044', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 10, 10, -1, 'F', NULL, '', '2026-06-19 10:15:21', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1067, 228, 'AL-B/2025/0053', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 12, 10, -1, 'F', NULL, '', '2026-06-19 10:16:14', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1068, 206, 'AL-B/2025/0068', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 0, 5, -1, 'F', NULL, '', '2026-06-19 10:16:57', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1069, 222, 'AL-B/2025/0057', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 8, 10, -1, 'F', NULL, '', '2026-06-19 10:18:27', 'not_approved', NULL, NULL, NULL, 0, NULL, 0),
(1070, 232, 'AL-B/2025/0049', '', '', 'Mathematics', 'Third Term', '2025/2026', NULL, 8, 5, -1, 'F', NULL, '', '2026-06-19 10:19:24', 'not_approved', NULL, NULL, NULL, 0, NULL, 0);

-- --------------------------------------------------------

--
-- Table structure for table `result_serials`
--

CREATE TABLE `result_serials` (
  `id` int(11) NOT NULL,
  `student_id` int(11) NOT NULL,
  `admission_number` varchar(50) NOT NULL,
  `class` varchar(50) NOT NULL,
  `term` varchar(50) NOT NULL,
  `session` varchar(20) NOT NULL,
  `serial_number` varchar(30) NOT NULL,
  `limit_count` int(11) DEFAULT 5,
  `date_generated` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `result_serials`
--

INSERT INTO `result_serials` (`id`, `student_id`, `admission_number`, `class`, `term`, `session`, `serial_number`, `limit_count`, `date_generated`) VALUES
(1, 139, 'AL-B/2025/0103', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-6Q76', 5, '2025-10-10 23:28:45'),
(2, 126, 'AL-B/2025/0115', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-MH5W', 5, '2025-10-10 23:28:45'),
(3, 137, 'AL-B/2025/0105', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-D6TK', 5, '2025-10-10 23:28:45'),
(4, 136, 'AL-B/2025/0106', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-4QKS', 5, '2025-10-10 23:28:45'),
(5, 143, 'AL-B/2025/0102', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-R29U', 5, '2025-10-10 23:28:45'),
(6, 148, 'AL-B/2025/0098', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-CP6D', 5, '2025-10-10 23:28:45'),
(7, 145, 'AL-B/2025/0097', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-BAMH', 5, '2025-10-10 23:28:45'),
(8, 135, 'AL-B/2025/0096', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-KC23', 5, '2025-10-10 23:28:45'),
(9, 144, 'AL-B/2025/0101', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-4E9Q', 5, '2025-10-10 23:28:45'),
(10, 132, 'AL-B/2025/0109', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-4C4J', 5, '2025-10-10 23:28:45'),
(11, 125, 'AL-B/2025/0114', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-75Q5', 5, '2025-10-10 23:28:45'),
(12, 154, 'AL-B/2025/0094', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-HFJU', 5, '2025-10-10 23:28:45'),
(13, 153, 'AL-B/2025/0095', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-6HVQ', 5, '2025-10-10 23:28:45'),
(15, 134, 'AL-B/2025/0107', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-RHWB', 5, '2025-10-10 23:28:45'),
(16, 127, 'AL-B/2025/0113', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-N5Y8', 5, '2025-10-10 23:28:45'),
(17, 130, 'AL-B/2025/0110', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-CBN4', 5, '2025-10-10 23:28:45'),
(18, 149, 'AL-B/2025/0100', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-WZ8T', 5, '2025-10-10 23:28:45'),
(19, 128, 'AL-B/2025/0112', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-FJZT', 5, '2025-10-10 23:28:45'),
(21, 156, 'AL-B/2025/0093', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-EZDR', 5, '2025-10-10 23:28:45'),
(22, 138, 'AL-B/2025/0104', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-UGE6', 5, '2025-10-10 23:28:45'),
(23, 146, 'AL-B/2025/0099', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-K2BU', 5, '2025-10-10 23:28:45'),
(24, 120, 'AL-B/2025/0118', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-8FPT', 5, '2025-10-10 23:28:45'),
(25, 147, 'AL-B/2025/0108', 'Primary 2', 'First Term', '2025/2026', 'ALB25-1P-ASWF', 5, '2025-10-10 23:28:45'),
(26, 55, 'AL-B/2025/0170', 'Primary 6', 'First Term', '2025/2026', 'ALB25-1P-TGGG', 5, '2025-10-11 00:08:37'),
(27, 57, 'AL-B/2025/0168', 'Primary 6', 'First Term', '2025/2026', 'ALB25-1P-AZYD', 5, '2025-10-11 00:08:37'),
(28, 33, 'AL-B/2025/0190', 'Primary 6', 'First Term', '2025/2026', 'ALB25-1P-3ZGU', 5, '2025-10-11 00:08:37'),
(29, 25, 'AL-B/2025/0198', 'Primary 6', 'First Term', '2025/2026', 'ALB25-1P-VZQ2', 5, '2025-10-11 00:08:37'),
(30, 30, 'AL-B/2025/0193', 'Primary 6', 'First Term', '2025/2026', 'ALB25-1P-NG32', 5, '2025-10-11 00:08:37'),
(31, 59, 'AL-B/2025/0166', 'Primary 6', 'First Term', '2025/2026', 'ALB25-1P-28GA', 5, '2025-10-11 00:08:37'),
(32, 31, 'AL-B/2025/0192', 'Primary 6', 'First Term', '2025/2026', 'ALB25-1P-BJR2', 5, '2025-10-11 00:08:37'),
(33, 32, 'AL-B/2025/0191', 'Primary 6', 'First Term', '2025/2026', 'ALB25-1P-TNWX', 5, '2025-10-11 00:08:37'),
(34, 26, 'AL-B/2025/0197', 'Primary 6', 'First Term', '2025/2026', 'ALB25-1P-U6DW', 5, '2025-10-11 00:08:37'),
(35, 27, 'AL-B/2025/0196', 'Primary 6', 'First Term', '2025/2026', 'ALB25-1P-Z4Y7', 5, '2025-10-11 00:08:37'),
(36, 16, 'AL-B/2025/0200', 'Primary 6', 'First Term', '2025/2026', 'ALB25-1P-MNSP', 5, '2025-10-11 00:08:37'),
(37, 24, 'AL-B/2025/0199', 'Primary 6', 'First Term', '2025/2026', 'ALB25-1P-XU7C', 5, '2025-10-11 00:08:37'),
(38, 28, 'AL-B/2025/0195', 'Primary 6', 'First Term', '2025/2026', 'ALB25-1P-NBPG', 5, '2025-10-11 00:08:37'),
(39, 56, 'AL-B/2025/0169', 'Primary 6', 'First Term', '2025/2026', 'ALB25-1P-6CJ7', 5, '2025-10-11 00:08:37'),
(40, 58, 'AL-B/2025/0167', 'Primary 6', 'First Term', '2025/2026', 'ALB25-1P-UVQ3', 5, '2025-10-11 00:08:37'),
(41, 53, 'AL-B/2025/0171', 'Primary 6', 'First Term', '2025/2026', 'ALB25-1P-QRJY', 5, '2025-10-11 00:08:37'),
(42, 29, 'AL-B/2025/0194', 'Primary 6', 'First Term', '2025/2026', 'ALB25-1P-HRJ9', 5, '2025-10-11 00:08:37'),
(43, 122, 'AL-B/2025/0116', 'Primary 1', 'First Term', '2025/2026', 'ALB25-1P-ZG69', 5, '2025-10-11 01:05:44'),
(44, 69, 'AL-B/2025/0159', 'Nursery 2', 'First Term', '2025/2026', 'ALB25-1N-WD7P', 5, '2025-10-11 01:12:06'),
(46, 67, 'AL-B/2025/0161', 'Nursery 2', 'First Term', '2025/2026', 'ALB25-1N-V2GR', 5, '2025-10-11 01:12:06'),
(47, 71, 'AL-B/2025/0157', 'Nursery 2', 'First Term', '2025/2026', 'ALB25-1N-Y8VK', 5, '2025-10-11 01:12:06'),
(48, 68, 'AL-B/2025/0160', 'Nursery 2', 'First Term', '2025/2026', 'ALB25-1N-MVJV', 5, '2025-10-11 01:12:06'),
(49, 72, 'AL-B/2025/0156', 'Nursery 2', 'First Term', '2025/2026', 'ALB25-1N-7PCW', 5, '2025-10-11 01:12:06'),
(50, 70, 'AL-B/2025/0158', 'Nursery 2', 'First Term', '2025/2026', 'ALB25-1N-D3R4', 5, '2025-10-11 01:12:06'),
(51, 74, 'AL-B/2025/0154', 'Nursery 2', 'First Term', '2025/2026', 'ALB25-1N-JJFV', 5, '2025-10-11 01:12:06'),
(52, 35, 'AL-B/2025/0188', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-WAN9', 5, '2025-10-11 05:07:55'),
(53, 62, 'AL-B/2025/0163', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-BBSN', 5, '2025-10-11 05:07:55'),
(54, 44, 'AL-B/2025/0179', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-A5NS', 5, '2025-10-11 05:07:55'),
(55, 50, 'AL-B/2025/0173', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-5KXR', 5, '2025-10-11 05:07:55'),
(56, 48, 'AL-B/2025/0175', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-MGA5', 5, '2025-10-11 05:07:55'),
(57, 49, 'AL-B/2025/0174', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-X3RC', 5, '2025-10-11 05:07:55'),
(58, 39, 'AL-B/2025/0184', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-6QX8', 5, '2025-10-11 05:07:55'),
(59, 36, 'AL-B/2025/0187', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-PJ8K', 5, '2025-10-11 05:07:55'),
(60, 43, 'AL-B/2025/0180', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-D9UE', 5, '2025-10-11 05:07:55'),
(61, 45, 'AL-B/2025/0178', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-4UDZ', 5, '2025-10-11 05:07:56'),
(64, 60, 'AL-B/2025/0165', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-K976', 5, '2025-10-11 05:07:56'),
(65, 42, 'AL-B/2025/0181', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-9MRN', 5, '2025-10-11 05:07:56'),
(66, 40, 'AL-B/2025/0183', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-D4HN', 5, '2025-10-11 05:07:56'),
(67, 47, 'AL-B/2025/0176', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-UNVZ', 5, '2025-10-11 05:07:56'),
(68, 38, 'AL-B/2025/0185', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-WP53', 5, '2025-10-11 05:07:56'),
(69, 46, 'AL-B/2025/0177', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-PPE5', 5, '2025-10-11 05:07:56'),
(70, 34, 'AL-B/2025/0189', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-529F', 5, '2025-10-11 05:07:56'),
(71, 41, 'AL-B/2025/0182', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-UHXS', 5, '2025-10-11 05:07:56'),
(72, 37, 'AL-B/2025/0186', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-ZKR8', 5, '2025-10-11 05:07:56'),
(73, 66, 'AL-B/2025/0162', 'Nursery 1 & 2', 'First Term', '2025/2026', 'ALB25-1N-DT8K', 5, '2025-10-17 11:30:42'),
(74, 73, 'AL-B/2025/0155', 'Nursery 1 & 2', 'First Term', '2025/2026', 'ALB25-1N-R2YM', 5, '2025-10-17 11:30:42'),
(75, 248, 'AL-B/2025/0042', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-NFVN', 5, '2025-10-30 09:45:01'),
(76, 257, 'AL-B/2025/0164', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-TDBX', 5, '2025-10-30 09:45:01'),
(77, 247, 'AL-B/2025/0041', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-B7WZ', 5, '2025-10-30 09:45:01'),
(78, 255, 'AL-B/2025/0039', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-KRFH', 5, '2025-10-30 09:45:01'),
(79, 246, 'AL-B/2025/0040', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-C7MD', 5, '2025-10-30 09:45:01'),
(80, 250, 'AL-B/2025/0172', 'Primary 5', 'First Term', '2025/2026', 'ALB25-1P-UUQU', 5, '2025-10-30 09:45:01');

-- --------------------------------------------------------

--
-- Table structure for table `sessions`
--

CREATE TABLE `sessions` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(20) NOT NULL COMMENT 'e.g. 2024/2025',
  `is_active` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `sessions`
--

INSERT INTO `sessions` (`id`, `name`, `is_active`, `created_at`, `updated_at`) VALUES
(1, '2024/2025', 0, '2026-06-14 18:33:51', '2026-06-14 20:50:34'),
(2, '2025/2026', 1, '2026-06-14 18:33:51', '2026-06-14 20:50:34'),
(3, '2026/2027', 0, '2026-06-14 20:44:43', '2026-06-14 20:44:43');

-- --------------------------------------------------------

--
-- Table structure for table `students`
--

CREATE TABLE `students` (
  `id` int(11) NOT NULL,
  `first_name` varchar(100) NOT NULL,
  `sur_name` varchar(100) DEFAULT NULL,
  `last_name` varchar(100) NOT NULL,
  `date_of_birth` date DEFAULT NULL,
  `blood_group` enum('A+','A-','B+','B-','AB+','AB-','O+','O-') DEFAULT NULL,
  `email` varchar(150) NOT NULL,
  `admission_number` varchar(50) NOT NULL,
  `password` varchar(255) NOT NULL,
  `class` varchar(50) DEFAULT NULL,
  `gender` varchar(10) DEFAULT NULL,
  `house` varchar(100) DEFAULT NULL,
  `photo` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `parent_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `students`
--

INSERT INTO `students` (`id`, `first_name`, `sur_name`, `last_name`, `date_of_birth`, `blood_group`, `email`, `admission_number`, `password`, `class`, `gender`, `house`, `photo`, `created_at`, `parent_id`) VALUES
(16, 'Abduljalal', 'Salihu', 'Haruna', NULL, NULL, '', 'AL-B/2025/0200', '$2y$10$uNtZnZNJDrjRrpDWiBYOW.lLoxYjwdyhmF6MXZcXCxosjfumtLuQ6', 'Primary 6', NULL, 'Umar Bn Khattab (Yellow House)', 'AL-B-2025-0200.jpg', '2025-10-06 07:22:54', 0),
(24, 'Salihu', 'Haruna', 'Ibrahim', '0000-00-00', '', 'albayan.salihuharuna@gmail.com', 'AL-B/2025/0199', '$2y$10$PUcMwtr/X5Ylv//e0gjWtuVa4hPqPSpI40.JkwLcLx3nqqw.O3wMS', 'Primary 6', 'Male', 'Usman Bn Affan (Blue House)', 'AL-B-2025-0199.jpg', '2025-10-06 07:51:40', 1),
(25, 'Mustapha', 'Hassan', '', NULL, NULL, 'albayan.mustaphahassan@gmail.com', 'AL-B/2025/0198', '$2y$10$xSMJNljMlftnMN1FlQUDyO9FN9ejpabSaVewM6d3ZGBzYb1j.1TJi', 'Primary 6', NULL, NULL, 'student_68e3756e8e45b7.98561637.jpg', '2025-10-06 07:53:23', 0),
(26, 'Muhammad', 'Sani', 'Alhassan', NULL, NULL, 'albayan.muhammadsani@gmail.com', 'AL-B/2025/0197', '$2y$10$8D4j9o9.jk/XVGaY7d9mZu5J/rJ8Z.7U9AnEbm6M.KhKuy0NlCb1y', 'Primary 6', NULL, NULL, 'AL-B-2025-0197.jpg', '2025-10-06 07:55:02', 0),
(27, 'Garzali', 'Hassan', 'Biyu', NULL, NULL, 'albayan.garzalihassan@gmail.com', 'AL-B/2025/0196', '$2y$10$XZUtItF5HwBDLfdBr2sxPuAQr302pM9R2h/ETbdCXX9rfbLOo4L16', 'Primary 6', NULL, 'Usman Bn Affan (Blue House)', 'student_68e3761ea8a747.39749282.jpg', '2025-10-06 07:56:18', 0),
(28, 'Jibrin', 'Muhammad', 'Maigari', NULL, NULL, 'albayan.jibrinmuhammad@gmail.com', 'AL-B/2025/0195', '$2y$10$Bw.rYgjVPzEAvaubp06BLuI01p.OdxgKQri4JFdgRenbFrWgRGZQq', 'Primary 6', NULL, 'Aliyu Bn Abuthalib (Green House)', 'student_68e37672e94288.69944022.jpg', '2025-10-06 07:57:43', 0),
(29, 'Naima', 'Bashir', 'Yusuf', NULL, NULL, 'albayan.naimabashir@gmail.com', 'AL-B/2025/0194', '$2y$10$PeSrhhOc4cOCRjbyb18wFubUUJjRaWyue94024RwVGpiCaF5m/df6', 'Primary 6', NULL, 'Usman Bn Affan (Blue House)', 'AL-B-2025-0194.jpg', '2025-10-06 07:58:44', 0),
(30, 'Fatima', 'Suleiman', '', NULL, NULL, 'albayan.fatimasuleiman@gmail.com', 'AL-B/2025/0193', '$2y$10$kKd7eMAjsYwxcwBEzy06JOT8KDKN881pGYkcUfS0nWOucH0Zq/67m', 'Primary 6', NULL, 'Aliyu Bn Abuthalib (Green House)', 'AL-B-2025-0193.jpg', '2025-10-06 07:59:42', 0),
(31, 'Umaira', 'Yusheu', '', NULL, NULL, 'albayan.umairayusheu@gmail.com', 'AL-B/2025/0192', '$2y$10$qe.ZNFRe2W9HDYEJdOjOP.VasNJ5iF/4Zwh.xyh3ktdPRMMeoQUiG', 'Primary 6', NULL, NULL, 'AL-B-2025-0192.jpg', '2025-10-06 08:01:36', 0),
(32, 'Summaiya', 'Zakari', 'Abdullahi', '0000-00-00', 'A-', 'albayan.summaiyazakari@gmail.com', 'AL-B/2025/0191', '$2y$10$uXrWVxGEpqLDdYOaU.OIhOuUiwcAUrQtWoVXIlwsxMqfzWYhqPPdW', 'Primary 6', 'Female', 'Umar Bn Khattab (Yellow House)', 'AL-B-2025-0191.jpg', '2025-10-06 08:04:17', 1),
(33, 'Abdurrahman', 'Aliyu', '', NULL, NULL, 'albayan.abdurrahmanaliyu@gmail.com', 'AL-B/2025/0190', '$2y$10$77OGisrDBnxaD0xttQKsD.I7Sfl9/J4YkLt7rEtkyAVDMQlNee6.e', 'Primary 6', NULL, 'Usman Bn Affan (Blue House)', 'AL-B-2025-0190.jpg', '2025-10-06 08:05:56', 0),
(34, 'Abubakar', 'Yahuza', 'Usman', '0000-00-00', '', 'albayan.abubakaryahuza@gmail.com', 'AL-B/2025/0189', '$2y$10$EZ3uWwE8MTsubNzZZx1U4.0ZCQ.tZNLSng.LEtiht1HGiNfeNWv42', 'Primary 5', 'Male', NULL, 'student_68e38cdcf14bb3.29512920.jpg', '2025-10-06 09:33:21', 0),
(35, 'Kabiru', 'Abbas', '', '0000-00-00', '', 'albayan.kabiruabbas@gmail.com', 'AL-B/2025/0188', '$2y$10$c1VHCtSUTH5PSjMHaGi/HORwqG76JWU3/PchrB04DmbfIQ4yCATjy', 'Primary 5', 'Male', NULL, 'AL-B-2025-0188.jpg', '2025-10-06 09:35:15', 0),
(36, 'Umar', 'Aliyu', '', '0000-00-00', '', 'albayan.umaraliyu@gmail.com', 'AL-B/2025/0187', '$2y$10$bZv2zDaNe3YcZRn5xBZ6Su2iB67Sl70WV70kUFJGCRXmNaDuP.7jW', 'Primary 5', 'Male', 'Abubakar Bn Abu-Quhafa (Pink House)', 'student_68e38dbba91a06.12597032.jpg', '2025-10-06 09:37:03', 0),
(37, 'Umar', 'Yunusa', '', '0000-00-00', '', 'albayan.umaryunusa@gmail.com', 'AL-B/2025/0186', '$2y$10$40j5xPaHdv5lNicBd/a1tene1UdwoGvOcdfsoH2lREFUGIYs21soG', 'Primary 5', 'Male', NULL, 'student_68e38e0f3003b3.89316020.jpg', '2025-10-06 09:38:26', 0),
(38, 'Aisha', 'Tasiu', 'M', '0000-00-00', '', 'albayan.aishatasiu@gmail.com', 'AL-B/2025/0185', '$2y$10$CxeWg1Y1t0cRnWQfjK9o3.Qt7xH9O.DDzEAMhCddw9ptKGvSUT.Pu', 'Primary 5', 'Female', 'Umar Bn Khattab (Yellow House)', 'student_68e38e5d908b57.47649944.jpg', '2025-10-06 09:39:45', 0),
(39, 'Amina', 'Aliyu', 'Saad', '0000-00-00', '', 'albayan.aminaaliyu@gmail.com', 'AL-B/2025/0184', '$2y$10$2moNEasQRlHI6H3/kszepulQzzSZL6CHacNgm12gOr2pnI1xlKH2K', 'Primary 5', 'Female', NULL, 'student_68e38e9bb274e2.46511551.jpg', '2025-10-06 09:40:47', 0),
(40, 'Farida', 'Salisu', 'Zakari', '0000-00-00', '', 'albayan.faridasalisu@gmail.com', 'AL-B/2025/0183', '$2y$10$Yd651zyz2ihc/BjtAm6XgenCoEk6Ai5P6hCnueSNHLHqtFEeH4mN6', 'Primary 5', 'Female', 'Usman Bn Affan (Blue House)', 'student_68e38ed4a0c709.78774187.jpg', '2025-10-06 09:41:43', 0),
(41, 'Hafiza', 'Zakariya', '', '0000-00-00', '', 'albayan.hafizayau@gmail.com', 'AL-B/2025/0182', '$2y$10$3ChxBZTpW7IofCXhXnHNd.73e6JWRbUCxWVmW6jbtlW6ig0KXomnq', 'Primary 5', 'Female', 'Abubakar Bn Abu-Quhafa (Pink House)', 'student_68e38f127672f2.38999763.jpg', '2025-10-06 09:42:45', 0),
(42, 'Hafsat', 'Rabiu', 'Abdulhamid', '0000-00-00', '', 'albayan.hafsatrabiu@gmail.com', 'AL-B/2025/0181', '$2y$10$9.oiMORa5ERF0zQ7sjYfnOpl5pzgOA5YzrhOgaGWc6SIPB5.gdKgG', 'Primary 5', 'Female', 'Umar Bn Khattab (Yellow House)', 'student_68e38faa2a0787.04164644.jpg', '2025-10-06 09:45:17', 0),
(43, 'Khadija', 'Auwal', 'Muhammad', '0000-00-00', '', 'albayan.khadijaauwal@gmail.com', 'AL-B/2025/0180', '$2y$10$4tCRBgwYSKBPWnXKcYHqZ.2xH5Hl5nXM1DmiN2O4HNlX9QxDhw7Q6', 'Primary 5', 'Female', 'Abubakar Bn Abu-Quhafa (Pink House)', 'student_68e3903b45c055.06149733.jpg', '2025-10-06 09:47:42', 1),
(44, 'Rabiatu', 'Abdullahi', '', '0000-00-00', '', 'albayan.rabiatuabdullahi@gmail.com', 'AL-B/2025/0179', '$2y$10$I/e2LXuqfmTmwghRHjFWQuFILXmUrzwSiGVO2YrOWbPPuzkZcK35S', 'Primary 5', 'Female', 'Abubakar Bn Abu-Quhafa (Pink House)', 'AL-B-2025-0179.jpg', '2025-10-06 09:49:10', 0),
(45, 'Shafaatu', 'Babangida', 'Abubakar', '0000-00-00', '', 'albayan.shafaatubabangida@gmail.com', 'AL-B/2025/0178', '$2y$10$YBYvgQT1FfpK2OS4m7iDr.c.xxktpTtK7Wm1JRGh9ucuDFcea/QYu', 'Primary 5', 'Female', NULL, 'student_68e390dce08077.74979968.jpg', '2025-10-06 09:50:24', 0),
(46, 'Nuhu', 'Umar', 'Shaylong', '0000-00-00', '', 'albayan.nuhuumar@gmail.com', 'AL-B/2025/0177', '$2y$10$L7hPbD9LLwxc0tKQOENKBOQ72qti16CQMLKKidaBl99bOUI4CFE86', 'Primary 5', 'Male', NULL, 'student_68e6223c4af514.68888455.jpg', '2025-10-08 08:35:12', 0),
(47, 'Buhari', 'Sani', 'Umar', '0000-00-00', '', 'albayan.buharisani@gmail.com', 'AL-B/2025/0176', '$2y$10$MkVH/UsgFezuBnv3i9I1iummyGwEn7kFE0AvinJrUsiwQihED9bG.', 'Primary 5', 'Male', 'Abubakar Bn Abu-Quhafa (Pink House)', 'student_68e623c54c2f11.87249908.jpg', '2025-10-08 08:41:45', 0),
(48, 'Adamu', 'Abubakar', '', '0000-00-00', '', 'albayan.adamuabubakar@gmail.com', 'AL-B/2025/0175', '$2y$10$t2mlfhZz.H98M124.XjDYuSI43L22Rptd9q6w.ZBLXoKF9iswPG4G', 'Primary 5', 'Male', NULL, 'student_68e62408282798.83003248.jpg', '2025-10-08 08:42:52', 0),
(49, 'Aisha', 'Adamu', 'Yakubu', '0000-00-00', '', 'albayan.aishaadamu@gmail.com', 'AL-B/2025/0174', '$2y$10$tdqUCunKiulA0wGyaOYgWeZJgSyYcwomxf7ehAmkwfLfCwsced0pm', 'Primary 5', 'Female', 'Usman Bn Affan (Blue House)', 'student_68e6246e6307b7.52378928.jpg', '2025-10-08 08:44:33', 0),
(50, 'Habiba', 'Abdulrafiu', 'Usman', '0000-00-00', '', 'albayan.habibaabdulrafiu@gmail.com', 'AL-B/2025/0173', '$2y$10$wz8RP6XRweRKslL9PJOyy.J5QbdhSGbHNCyIjt4jiJ9bcVS35tSXW', 'Primary 5', 'Female', NULL, 'AL-B-2025-0173.jpg', '2025-10-08 08:45:57', 0),
(53, 'Maryam', 'Muhammad', 'Sambo', NULL, NULL, 'albayan.maryammuhammad@gmail.com', 'AL-B/2025/0171', '$2y$10$jGQsZMPCTVgIEh6BFb4U.OjzhM18ef3bEFSEsDbAvIooLPB1C4Vj.', 'Primary 6', NULL, 'Aliyu Bn Abuthalib (Green House)', 'AL-B-2025-0171.jpg', '2025-10-08 09:21:18', 0),
(55, 'Salisu', 'Abdullahi', '', '0000-00-00', '', 'albayan.salisuabdullahi@gmail.com', 'AL-B/2025/0170', '$2y$10$Z2CF7sZ0kMGA20E9jgBYP.0BkyRi7p6qHlKHnblti3dXVa7RF2gfm', 'Primary 6', 'Male', 'Usman Bn Affan (Blue House)', '17612081521651842385836666601908.jpg', '2025-10-08 09:36:24', 0),
(56, 'Abubakar', 'Umar', 'Mawal', NULL, NULL, 'albayan.abubakarumar@gmail.com', 'AL-B/2025/0169', '$2y$10$ecaQQj73GMf3cp4dUBPYjO37YCOoSJ9iychPD7IXOMfCHkGcJlVfe', 'Primary 6', NULL, NULL, 'IMG_20251111_080616_889.jpg', '2025-10-08 09:37:20', 0),
(57, 'Muhammad', 'Abdullahi', '', NULL, NULL, 'albayan.muhammadabdullahi@gmail.com', 'AL-B/2025/0168', '$2y$10$K/2dsnzJj41RnUDRgJJ0euvcE8DT7vTw8KHm6r0P3PJP1xubgD5kO', 'Primary 6', NULL, NULL, 'IMG_20251111_092218_569.jpg', '2025-10-08 09:38:06', 0),
(58, 'Fatima', 'Adamu', 'Saeed', '0000-00-00', '', 'albayan.fatimaadamu@gmail.com', 'AL-B/2025/0167', '$2y$10$PaCs3YfDEJROZFdFlbeBcOSkwigQF9qB3TgMCb1QaxQxmWfRbVGG.', 'Primary 6', 'Female', NULL, '17612081860926643879144588883829.jpg', '2025-10-08 09:39:06', 0),
(59, 'Amina', 'Yakubu', '', NULL, NULL, 'albayan.aminaadamu@gmail.com', 'AL-B/2025/0166', '$2y$10$Hj.UVnzWhze77swRk7CXwen/wxIEuS7ULLKzebgpQrQWZ4dVbQHAG', 'Primary 6', NULL, 'Umar Bn Khattab (Yellow House)', '17612082664675602899823338434815.jpg', '2025-10-08 09:40:01', 0),
(60, 'Izzatu', 'Inusa', '', '0000-00-00', '', 'albayan.izzatuinusa@gmail.com', 'AL-B/2025/0165', '$2y$10$zrLOW3ViZ/PWweYwpYs82.dOMLYm6mpoHZR7g38xhQc6Tyw4sym06', 'Primary 5', 'Female', NULL, '1761552579530565650270725961539.jpg', '2025-10-08 09:42:07', 0),
(62, 'Isa', 'Abdulbaki', '', '0000-00-00', '', 'albayan.isaabdulbaki@gmail.com', 'AL-B/2025/0163', '$2y$10$paCrTK7Tm7BGg0g4UjxU4uJzJEw.DOhg2BgcOBXubzuXBIZLfUeF2', 'Primary 5', 'Male', 'Usman Bn Affan (Blue House)', 'IMG_20251023_091938_533.jpg', '2025-10-08 09:43:43', 0),
(66, 'Arif', 'Aminu', 'Abubakar', '0000-00-00', '', 'albayan.arifaminu@gmail.com', 'AL-B/2025/0162', '$2y$10$ZwCW86XarE12v0Tv25TuIu3yVhEdD37qRDsSjSDbTfd6hTJfwpTPO', 'Nursery 1', 'Male', NULL, 'AL-B-2025-0162.jpg', '2025-10-08 13:25:50', 0),
(67, 'Abdulaziz', 'Abdurrahman', '', '0000-00-00', '', 'albayan.abdulazizabdurrahman@gmail.com', 'AL-B/2025/0161', '$2y$10$vyE6Ejd9yrWRpZpFYtWzEeSCx6TvAYpqi4pjO.q37hhG8hjekhMAK', 'Nursery 2', 'Male', NULL, 'AL-B-2025-0161.jpg', '2025-10-08 13:26:45', 0),
(68, 'Sani', 'Basiru', '', '0000-00-00', '', 'albayan.sanibashir@gmail.com', 'AL-B/2025/0160', '$2y$10$YgmEPs2rydIw6zRKBfLBaOeIHNGsUMJ3ehUAzDma4u7cd26DRc.J6', 'Nursery 2', 'Male', NULL, 'AL-B-2025-0160.jpg', '2025-10-08 13:27:40', 0),
(69, 'Yakubu', 'Abdullahi', '', '0000-00-00', '', 'albayan.yakubuabdullahi@gmail.com', 'AL-B/2025/0159', '$2y$10$7boDcpO1yFDHV6ya.NyvLuqne11mQKmtJQfkpzLx9BiIYCiFXsKcu', 'Nursery 2', 'Male', 'Usman Bn Affan (Blue House)', 'IMG_20251117_085408_245.jpg', '2025-10-08 13:28:56', 0),
(70, 'Salisu', 'Dauda', '', '0000-00-00', '', 'albayan.salisudauda@gmail.com', 'AL-B/2025/0158', '$2y$10$b8bVgftXbnnU74gcgPdBc.GQzyp13BR7hAyJzcg2h4Yn2NVqPMPFy', 'Nursery 2', 'Male', NULL, 'IMG_20251029_090957_808.jpg', '2025-10-08 13:29:42', 0),
(71, 'Huzaifa', 'Abubakar', '', '0000-00-00', '', 'albayan.huzaifaabubakar@gmail.com', 'AL-B/2025/0157', '$2y$10$iILkrv8VFLipUXl7OKgqZ.t/DArL/YMtzjTYfvx0Ak12WZnNVr5MC', 'Nursery 2', 'Male', 'Umar Bn Khattab (Yellow House)', 'IMG_20251117_085849_323.jpg', '2025-10-08 13:30:31', 0),
(72, 'Ibrahim', 'Dallami', '', '0000-00-00', '', 'albayan.ibrahimdallami@gmail.com', 'AL-B/2025/0156', '$2y$10$tgZ3lZ251P7pfvZMjU/Vue1gPHNPtQ3SIm4sH7Oe3YrwUe2NuhGWS', 'Nursery 2', 'Male', NULL, 'IMG_20251029_090742_787.jpg', '2025-10-08 13:31:28', 0),
(73, 'Yusuf', 'Isa', 'Iliyas', '0000-00-00', '', 'albayan.yusufisa@gmail.com', 'AL-B/2025/0155', '$2y$10$Jrv22Ccq0ItYg9mxCC2zkeW0b181Wv2181ntFyi1MPm64cukB.a4u', 'Nursery 1', 'Male', NULL, 'AL-B-2025-0155.jpg', '2025-10-08 13:32:17', 0),
(74, 'Safiya', 'Salisu', 'Zakari', '0000-00-00', '', 'albayan.safiyasalisu@gmail.com', 'AL-B/2025/0154', '$2y$10$T0U1yU9d5LMAf79hj8yN2OV44LDBZ6deTdCPx2UuDwPUI8a7D9Ka2', 'Nursery 2', 'Female', 'Usman Bn Affan (Blue House)', 'IMG_20251117_090639_892.jpg', '2025-10-08 13:32:57', 0),
(75, 'Abubakar', 'Yakubu', '', NULL, NULL, 'albayan.abubakaryakubu@gmail.com', 'AL-B/2025/0153', '$2y$10$gd1AM/l1fd7QgabCYI2DsOFdcHBZrfSp7lOQYdSNy5AMzphVS5qeS', 'Primary 3', NULL, NULL, '17621568803202195833298547507717.jpg', '2025-10-08 13:43:22', 0),
(76, 'Abdulfatah', 'Adamu', 'Janare', NULL, NULL, 'albayan.abdulfatahadamu@gmail.com', 'AL-B/2025/0152', '$2y$10$eTogpMXTTqgb33ytXNqNs.GZrwkqZmtK9NLEEKUuOKJzUsJXfxZP.', 'Primary 3', NULL, NULL, '17616399479435796589787762494785.jpg', '2025-10-08 13:45:57', 0),
(77, 'Abdussamad', 'Bashir', 'Yusuf', NULL, NULL, 'albayan.abdussamadbashir@gmail.com', 'AL-B/2025/0151', '$2y$10$tQ8StOeIoDoK82L7c/b.oOSmTsVIBv0II74A8ocPErO2.9lbzVsKm', 'Primary 3', NULL, NULL, '17616401668266274781282156874625.jpg', '2025-10-08 13:46:43', 3),
(78, 'Abdulmalik', 'Abubakar', '', NULL, NULL, 'albayan.abdulmalikabubakar@gmail.com', 'AL-B/2025/0150', '$2y$10$wa8t0DqsHsKDMb1XWiPHDOFR.PDhpchZ.puFM1pImSOt1surqhkf6', 'Primary 3', NULL, NULL, '17616398843713531422336004896542.jpg', '2025-10-08 13:47:53', 0),
(79, 'Buhari', 'Babayo', 'Ismail', NULL, NULL, 'albayan.buharibabayo@gmail.com', 'AL-B/2025/0149', '$2y$10$s6g0BP6fGI2WpBvMtSzvoepZTB0vXmVZiehUzk7OWMAuvSpqI8zVe', 'Primary 3', NULL, NULL, '176164011385893175873703189322.jpg', '2025-10-08 13:48:53', 0),
(80, 'Gaddafi', 'Mudi', '', NULL, NULL, 'albayan.gaddafimudi@gmail.com', 'AL-B/2025/0148', '$2y$10$D/dHHzx59HRaGJBKnub9wOa3QvYTlWU6fXeGdVh2wLlHrgwkoC3EO', 'Primary 3', NULL, 'Abubakar Bn Abu-Quhafa (Pink House)', '17624174421563138680762659614460.jpg', '2025-10-08 13:50:01', 0),
(81, 'Ismail', 'Abdurrahman', '', NULL, NULL, 'albayan.ismailabdurrahman@gmail.com', 'AL-B/2025/0147', '$2y$10$bh9Y2thxiWSkEhs/k.5jTeGYikUyvaXf0JhaNcDqIxT3qsNgJvi.q', 'Primary 3', NULL, 'Umar Bn Khattab (Yellow House)', '17616398148602664815900484476172.jpg', '2025-10-08 13:50:59', 0),
(82, 'Nasiru', 'Tanimu', '', NULL, NULL, 'albayan.nasirutanimu@gmail.com', 'AL-B/2025/0146', '$2y$10$Yfl7UQE3qWQCZ/1h4EHdtuN6qy7KVKJyLnSI6irQJMAiL0yTtagaC', 'Primary 3', NULL, NULL, '17621567478975977113014796722897.jpg', '2025-10-08 13:51:34', 0),
(83, 'Nuhu', 'Ahmad', 'Aliyu', NULL, NULL, 'albayan.nuhuahmad@gmail.com', 'AL-B/2025/0145', '$2y$10$60yLW3ZE6L/zioINOWmEYuF8EOiGIybkyLe3msOZgxZdA3O/3PXIW', 'Primary 3', NULL, 'Usman Bn Affan (Blue House)', '17616400367266312824968350754692.jpg', '2025-10-08 13:52:15', 0),
(84, 'Sadisu', 'Jamilu', '', NULL, NULL, 'albayan.sadisujamilu@gmail.com', 'AL-B/2025/0144', '$2y$10$W/fzNwIiQS2no265CHnWHeGep3SW35O9jErkP1CVSST9P0etWhWNq', 'Primary 3', NULL, 'Usman Bn Affan (Blue House)', '17624173550714059058082893097830.jpg', '2025-10-08 13:53:18', 0),
(88, 'Sani', 'Bashir', 'Yusuf', NULL, NULL, 'albayan.sanibashir2@gmail.com', 'AL-B/2025/0143', '$2y$10$V5.pxR.jmqKMjaeMdWlqauq0SuUU/MCSh8kBNNR//R6WEjQabictu', 'Primary 3', NULL, 'Abubakar Bn Abu-Quhafa (Pink House)', 'AL-B-2025-0143.jpg', '2025-10-08 13:56:31', 0),
(89, 'Zakariyya', 'Said', '', NULL, NULL, 'albayan.zakariyyasaid@gmail.com', 'AL-B/2025/0142', '$2y$10$xUxg5XOIeu8i38.X6FmGKupZH6HwdfSRO7391bAeeV3nRDVaskOpi', 'Primary 3', NULL, 'Aliyu Bn Abuthalib (Green House)', '17621565068221946739896724336256.jpg', '2025-10-08 13:57:19', 0),
(90, 'Amina', 'Rabiu', 'Yau', NULL, NULL, 'albayan.aminarabiu@gmail.com', 'AL-B/2025/0141', '$2y$10$QtH.Fk.AphDQgM.Gs9bsYeNCz/OrAyzdfl.IN8H6NyFDV3.Dbn1rS', 'Primary 3', NULL, 'Abubakar Bn Abu-Quhafa (Pink House)', '17621564091845689935607028175012.jpg', '2025-10-08 13:57:59', 0),
(91, 'Fiddausi', 'Abdullahi', '', NULL, NULL, 'albayan.fiddausiabdullahi@gmail.com', 'AL-B/2025/0140', '$2y$10$M94U8KfiPagYb12QkAzveugH9SgRY4bptxg.LaYImZsAQt7o4LacO', 'Primary 3', NULL, 'Aliyu Bn Abuthalib (Green House)', '1761639533823744995620859779343.jpg', '2025-10-08 13:58:47', 0),
(92, 'Fatima', 'Abdurrahman', '', NULL, NULL, 'albayan.fatimaabdullahi@gmail.com', 'AL-B/2025/0139', '$2y$10$hQItqHYKHZGcRXbukWZ40e2afXqKYhIRmJzB6/dqP.lBzeAOaDF0K', 'Primary 3', NULL, 'Usman Bn Affan (Blue House)', '17616396995844754461918892832280.jpg', '2025-10-08 13:59:33', 0),
(93, 'Hajara', 'Salihu', 'Haruna', NULL, NULL, 'albayan.hajarasalihu@gmail.com', 'AL-B/2025/0138', '$2y$10$WQriqYLG346x8FWxeXphvu0LDLAuE7HPyh/TTOkk3KC5eSnDMrSWu', 'Primary 3', NULL, 'Abubakar Bn Abu-Quhafa (Pink House)', '17621566514073248489381980750093.jpg', '2025-10-08 14:00:11', 0),
(94, 'Halima', 'Idris', 'Shuaibu', NULL, NULL, 'albayan.halimaidris@gmail.com', 'AL-B/2025/0137', '$2y$10$iRWEZk/wcRTCudO8SgKuP.L2wwiF9HDnsi68jlNTdQU6oCglZ3hSG', 'Primary 3', NULL, NULL, '1763630793_1000209091.jpg', '2025-10-08 14:00:59', 0),
(95, 'Khadija', 'Hassan', 'Biyu', NULL, NULL, 'albayan.khadijahassan@gmail.com', 'AL-B/2025/0136', '$2y$10$nMLjr/9PREAY6gGb58/ZNOgpWi/6mKu9qHfudvHHSbNw3qaBupLnO', 'Primary 3', NULL, NULL, '17616402957363116760138108333726.jpg', '2025-10-08 14:01:43', 0),
(96, 'Khadija', 'Muhammad', 'Bello', NULL, NULL, 'albayan.khadijamuhammad@gmail.com', 'AL-B/2025/0135', '$2y$10$InK1.bWbamGgp2GDCBFxv.KlXv3/wDQRc.L1ASj6S6FzW/VtppJjq', 'Primary 3', NULL, 'Umar Bn Khattab (Yellow House)', '17621562857674383242402650898680.jpg', '2025-10-08 14:02:27', 0),
(97, 'Rahma', 'Isa', 'Idris', NULL, NULL, 'albayan.rahmaisa@gmail.com', 'AL-B/2025/0134', '$2y$10$wZQJoOsxtlVLAtMHOKZcP.98YqtOvbM3cXtDnV6E5yzCrxC71dSQG', 'Primary 3', NULL, 'Abubakar Bn Abu-Quhafa (Pink House)', '17624172457307361243013285782640.jpg', '2025-10-08 14:03:10', 0),
(98, 'Ummulkulsim', 'Isa', 'Tahir', NULL, NULL, 'albayan.ummulkulsimisa@gmail.com', 'AL-B/2025/0133', '$2y$10$r7PPitGNhZdiuVDprF1Dk.Sb7NAJ5oeugb780fkZmdb9B5YAGKQIO', 'Primary 3', NULL, 'Umar Bn Khattab (Yellow House)', '17621562268122562789989716362503.jpg', '2025-10-08 14:04:09', 0),
(99, 'Abubakar', 'Munkaila', '', '0000-00-00', '', 'albayan.abubakarmunkaila@gmail.com', 'AL-B/2025/0131', '$2y$10$1p7ci8kdP01Dmzc8.nDtauCjhViRmz99T9MPYYZzGuwjL1dCuOc9C', 'Nursery 3', 'Male', 'Abubakar Bn Abu-Quhafa (Pink House)', '1763630371_1000209086.jpg', '2025-10-08 14:22:46', 0),
(100, 'Abubakar', 'Musa', 'A', '0000-00-00', '', 'albayan.abubakara@gmail.com', 'AL-B/2025/0132', '$2y$10$q8O9H5JNL1.ni.KTBXV7PuuDBD23xoeouVqwqWuwEtr80CMWqKHIu', 'Nursery 3', 'Male', 'Abubakar Bn Abu-Quhafa (Pink House)', '1763630425_1000209087.jpg', '2025-10-08 14:23:29', 0),
(102, 'Aminu', 'Abdullahi', 'D', '0000-00-00', '', 'albayan.aminud@gmail.com', 'AL-B/2025/0130', '$2y$10$qlp2VXKcUdAu0itfJn7w8eGm1LRAjoMbwPMaoFtEJicH57IkGPJda', 'Nursery 3', 'Male', 'Aliyu Bn Abuthalib (Green House)', 'AL-B-2025-0130.jpg', '2025-10-08 14:24:41', 0),
(103, 'Kabiru', 'Zakari', '', '0000-00-00', '', 'albayan.kabiruzakari@gmail.com', 'AL-B/2025/0129', '$2y$10$Dd.2gZSEAjIpAL0c3fVN6uXiqZR8/Y53radC6yjhCoE11z2CNrXJq', 'Nursery 3', 'Male', 'Abubakar Bn Abu-Quhafa (Pink House)', '1763630583_1000209089.jpg', '2025-10-08 14:25:24', 0),
(107, 'Muhammad', 'Sani', '', '0000-00-00', '', 'albayan.muhammadsani2@gmail.com', 'AL-B/2025/0127', '$2y$10$QCkhCJwzwAok33LC4kVMfeu/kLeNjPDi6U31.jzEhthWC5ePtTAFm', 'Nursery 3', 'Male', 'Abubakar Bn Abu-Quhafa (Pink House)', '1763630714_1000209090.jpg', '2025-10-08 14:27:36', 0),
(108, 'Umar', 'Rabiu', 'Munkaila', '0000-00-00', '', 'albayan.umarrabiu@gmail.com', 'AL-B/2025/0126', '$2y$10$Ix1eJJSaGaD4XX56LJaKdeHltyi6WI2XtQR9fD6ndODXbs3xqZUGO', 'Nursery 3', 'Male', NULL, '1763630467_1000209088.jpg', '2025-10-08 14:28:17', 0),
(109, 'Yusuf', 'Abubakar', '', '0000-00-00', '', 'albayan.yusufabubakar@gmail.com', 'AL-B/2025/0125', '$2y$10$GqR8CcSNZcfWpmn3bdQcIe0cHuAQ5BBMnFFJcEAq4KMOVRWWTTBPy', 'Nursery 3', 'Male', NULL, 'AL-B-2025-0125.jpg', '2025-10-08 14:28:53', 0),
(112, 'Hanifa', 'Bashir', 'Yusuf', '0000-00-00', '', 'albayan.hanifabashir@gmail.com', 'AL-B/2025/0124', '$2y$10$n/cZmkaQiHaytaKjoOjw.ODcpQOEaERkaOtBTuK2JkLJN4nO3ibPy', 'Nursery 3', 'Female', 'Umar Bn Khattab (Yellow House)', '1763629084_1000209077.jpg', '2025-10-08 14:30:20', 0),
(113, 'Fatima', 'Aminu', 'Ibrahim', '0000-00-00', '', 'albayan.fatimaaminu@gmail.com', 'AL-B/2025/0123', '$2y$10$6LYNs17nj.h0CCep8Hf5aOGPLASjLutxvd6eyMNPQqnozRrqibOPq', 'Nursery 3', 'Female', 'Umar Bn Khattab (Yellow House)', '1763628915_1000209073.jpg', '2025-10-08 14:31:37', 0),
(116, 'Khadija', 'Zaiwanu', '', '0000-00-00', '', 'albayan.khadijazaiwanu@gmail.com', 'AL-B/2025/0121', '$2y$10$69U2YYV61i8vj3vGPpH/5OvdShJbr6MUyGwVRgsMUr7thiQvqKRyC', 'Nursery 3', 'Female', 'Usman Bn Affan (Blue House)', '1763630206_1000209080.jpg', '2025-10-09 09:14:17', 0),
(117, 'Rahama', 'Khalid', '', '0000-00-00', '', 'albayan.rahamakhalid@gmail.com', 'AL-B/2025/0120', '$2y$10$bImQ24nkNtAhsLmnmvfTZeacIj3Zyd3hR.gbWgOBD5/FO6t9CKfWm', 'Nursery 3', 'Female', NULL, '1763629057_1000209076.jpg', '2025-10-09 09:15:28', 0),
(118, 'Saadatu', 'Jibrin', '', '0000-00-00', '', 'albayan.saadatujibrin@gmail.com', 'AL-B/2025/0119', '$2y$10$u0UgnLTD37ohJtYS/CtrcuSiHLCnJflVZlwkBxAiqvLKWsSSlVlc6', 'Nursery 3', 'Female', NULL, '1763628968_1000209074.jpg', '2025-10-09 09:16:14', 0),
(120, 'Abubakar', 'Sani', 'Umar', '0000-00-00', '', 'albayan.abubakarsani@gmail.com', 'AL-B/2025/0118', '$2y$10$OJEiFXg7yQdaFMRqtKI8b.p/fqFGYlBMlgVBGHpLodMn1PfGVj9Xi', 'Primary 2', 'Male', 'Aliyu Bn Abuthalib (Green House)', '17615540097831029435910593542634.jpg', '2025-10-10 07:11:19', 0),
(121, 'Abdulmuhyi', 'Ahmad', '', NULL, NULL, 'albayan.abdulmuhyiahmad@gmail.com', 'AL-B/2025/0117', '$2y$10$EBwWh6BGYag3DWwwuvsWdOWvxG7y4.zY.Tc6rKbzyF354weJdGSSm', 'Primary 4', NULL, 'Umar Bn Khattab (Yellow House)', '17612140639228859350718487451001.jpg', '2025-10-10 07:12:22', 0),
(122, 'Adam', 'Musa', 'Mairiga', '0000-00-00', '', 'albayan.adammusa@gmail.com', 'AL-B/2025/0116', '$2y$10$NZgUa9g5cuuAbwyZd.oUhu3AlcoJGCrfh4sHHAcAtUOK6678/t3f.', 'Primary 1', 'Male', 'Abubakar Bn Abu-Quhafa (Pink House)', 'AL-B-2025-0116.jpg', '2025-10-10 07:13:56', 1),
(125, 'Abdurrahim', 'Usman', 'Abubakar', '0000-00-00', '', 'albayan.abdurrahimusman@gmail.com', 'AL-B/2025/0114', '$2y$10$1YcqFCoEsRBZY7UYMRnGSekrdz9qE0mqud2R833ovl8PpOXsD1VnC', 'Primary 2', 'Male', 'Aliyu Bn Abuthalib (Green House)', '17612134697246358866996410950515.jpg', '2025-10-10 13:24:38', 2),
(126, 'Auwal', 'Abdulhamid', '', '0000-00-00', '', 'albayan.auwalabdulhamid@gmail.com', 'AL-B/2025/0115', '$2y$10$Xxpum2HIZ90OGSu0I5SHJO6/Eycxv11ltWc10wgKcc9KffnVQtz0m', 'Primary 2', 'Male', 'Abubakar Bn Abu-Quhafa (Pink House)', '17612130398873257131777195218509.jpg', '2025-10-10 13:28:25', 0),
(127, 'Auwal', 'Muhammad', 'Maigari', '0000-00-00', '', 'albayan.auwalmuhammad@gmail.com', 'AL-B/2025/0113', '$2y$10$cUU9NUGkGaRdKCjaTt.1tOqAmmrsOUtWEpTnXFHSYrM56MGy1fb6W', 'Primary 2', 'Male', NULL, '1761213278894138631781048553201.jpg', '2025-10-10 13:30:27', 0),
(128, 'Bashar', 'Alhassan', 'Musa', '0000-00-00', '', 'albayan.basharalhassan@gmail.com', 'AL-B/2025/0112', '$2y$10$5k3AOYZKKnm4ErvRpH1dZuopXn1JRkfY15mGd5t/1RLDSz.JB4XL.', 'Primary 2', 'Male', NULL, 'AL-B-2025-0112.jpg', '2025-10-10 13:33:04', 0),
(130, 'Idris', 'Musa', 'Mairiga', '0000-00-00', '', 'albayan.idrismusa@gmail.com', 'AL-B/2025/0110', '$2y$10$i87agIISrQIWWqRE8Ec4V.y9.zf64ZhHJb679Kkw/PpNjqu1K0666', 'Primary 2', 'Male', 'Aliyu Bn Abuthalib (Green House)', '17612133760115712070453889213287.jpg', '2025-10-10 13:36:16', 1),
(132, 'Muhammad', 'Hawi', 'Abdulhamid', '0000-00-00', '', 'albayan.muhammadhawi@gmail.com', 'AL-B/2025/0109', '$2y$10$CoK6cPcj7c3iev2zlosmSOjXcgBXfZc7HSyD./ypgb/AKC8E/1rZK', 'Primary 2', 'Male', NULL, '17612131739715428283476737646738.jpg', '2025-10-10 13:39:25', 0),
(134, 'Nasiru', 'Isa', 'Lawan', '0000-00-00', '', 'albayan.naziruisa@gmail.com', 'AL-B/2025/0107', '$2y$10$AE9/6Tegz/QkUx1pMNFBNulXO68hWsreyQ16Iu0UWOqrgzB3df.yy', 'Primary 2', 'Male', NULL, '', '2025-10-10 13:45:16', 0),
(135, 'Zaharaddini', 'Zakari', '', '0000-00-00', '', 'albayan.zaharaddinizakari@gmail.com', 'AL-B/2025/0096', '$2y$10$0j6h8fEXWG7yqboizbOH1OJUxtxcfu7ghjasqS7Y.CZXmvGIIvNEK', 'Primary 2', 'Male', 'Abubakar Bn Abu-Quhafa (Pink House)', 'IMG_20251028_083246_117.jpg', '2025-10-10 13:46:55', 0),
(136, 'Adama', 'Garba', '', '0000-00-00', '', 'albayan.adamagarba@gmail.com', 'AL-B/2025/0106', '$2y$10$rS9gEEB8VOi.pVXHovey2uoKoEcnJWuTutFKFlZhEdTv7odgkEMGS', 'Primary 2', 'Female', 'Aliyu Bn Abuthalib (Green House)', '17612131333061196163585357957987.jpg', '2025-10-10 13:49:24', 0),
(137, 'Fatima', 'Dauda', '', '0000-00-00', '', 'albayan.fatimadauda@gmail.com', 'AL-B/2025/0105', '$2y$10$2iEFT/f9NkXJtU5NnC889edTrBrzatr371i8SMPeDLfZMJachIMam', 'Primary 2', 'Female', NULL, '17612130792945402378801132348808.jpg', '2025-10-10 13:50:21', 0),
(138, 'Fatima', 'Idris', 'Shuaibu', '0000-00-00', '', 'albayan.fatimaidris@gmail.com', 'AL-B/2025/0104', '$2y$10$xgZvaYOOqkFUFxStQnAOZuFNL8cfb8BdatpRYtqSd.FAHGZ7eoOza', 'Primary 2', 'Female', 'Usman Bn Affan (Blue House)', '17612132312045646982200938324916.jpg', '2025-10-10 13:52:33', 0),
(139, 'Hassana', 'Abbas', '', '0000-00-00', '', 'albayan.hassanaabbas@gmail.com', 'AL-B/2025/0103', '$2y$10$MRYkldKlkAsEn14/njplD.6C..7kWp4graxwUxSDJXxnErfuhgiEC', 'Primary 2', 'Female', 'Aliyu Bn Abuthalib (Green House)', '17612129937299098933615289125983.jpg', '2025-10-10 13:54:27', 0),
(143, 'Hafsat', 'Mudassir', '', '0000-00-00', '', 'albayan.hafsatmudanssir@gmail.com', 'AL-B/2025/0102', '$2y$10$Bx5BCqPlEYFU4/AY6xVYCOlmaAY37YUqU4qLUWUiHY/GcLSADleSS', 'Primary 2', 'Female', NULL, '', '2025-10-10 13:59:16', 0),
(144, 'Izzatu', 'Zawwanu', '', '0000-00-00', '', 'albayan.izzatuzawwanu@gmail.com', 'AL-B/2025/0101', '$2y$10$jpsbIAIIyEO2jTMvyj2EuOWJRbm8vOJTScMzb.Fyea.whKJtl8J.i', 'Primary 2', 'Female', 'Usman Bn Affan (Blue House)', '1761554158072534791607892752329.jpg', '2025-10-10 14:00:51', 0),
(145, 'Maryam', 'Umar', '', '0000-00-00', '', 'albayan.maryamumar@gmail.com', 'AL-B/2025/0097', '$2y$10$Et.TYSPBzWrsAiS2MjdDdepaglKZcj0uVSMY/Z704cPRjx.AkHElW', 'Primary 2', 'Female', 'Abubakar Bn Abu-Quhafa (Pink House)', '17615541119591271747408277686890.jpg', '2025-10-10 14:02:25', 0),
(146, 'Naima', 'Mudi', 'Umar', '0000-00-00', '', 'albayan.naimamudi@gmail.com', 'AL-B/2025/0099', '$2y$10$tCb4KjqwGwjvuzBzADRqROAWPRHVEy9g5shD15.b/MXF.lHvqGvXC', 'Primary 2', 'Female', 'Abubakar Bn Abu-Quhafa (Pink House)', '17615538508834767234549826239210.jpg', '2025-10-10 14:03:44', 0),
(147, 'Nafisa', 'Zakari', 'Umar', '0000-00-00', '', 'albayan.nafisazakari@gmail.com', 'AL-B/2025/0108', '$2y$10$U/9x3YjT4kA52KJSbTpp4uHC4/tzDAVNgfso0.fg1emu74mBgGO7m', 'Primary 2', 'Female', NULL, '17612135277618082815030669741396.jpg', '2025-10-10 14:05:25', 0),
(148, 'Zainab', 'Munkaila', '', '0000-00-00', '', 'albayan.zainadmunkall@gmail.com', 'AL-B/2025/0098', '$2y$10$Ah/UQ24IjeflJOipfZXEBu1ywI13wYjA2HSywVDR6yKgwIcTrrpLO', 'Primary 2', 'Female', 'Aliyu Bn Abuthalib (Green House)', '17615539655015601063468327747747.jpg', '2025-10-10 14:07:51', 0),
(149, 'Zuwaira', 'Al hassan', 'Musa', '0000-00-00', '', 'albayan.zuwairaalhassan@gmail.com', 'AL-B/2025/0100', '$2y$10$sV7Km/0GLJHNJDs5I3NRc./aKxJWEUm4E/9.P4zdZUTIvzbvq.Abe', 'Primary 2', 'Female', 'Umar Bn Khattab (Yellow House)', 'AL-B-2025-0100.jpg', '2025-10-10 14:09:51', 0),
(153, 'Muhammad', 'Sani', 'Danjuma', '0000-00-00', '', 'albayan.muhammadsani3@gmail.com', 'AL-B/2025/0095', '$2y$10$Ii.N.exBEgsehEPNaKXmO./ITgXbZIDvG2cop9IPk/tt8QTrSJ2r.', 'Primary 2', 'Male', NULL, '17612134141658856389491793872783.jpg', '2025-10-10 20:14:06', 0),
(154, 'Abubakar', 'Muhammad', 'Bello', '0000-00-00', '', 'albayan.abubakarmuhammad@gmail.com', 'AL-B/2025/0094', '$2y$10$G2V5TcSnZfTqrLnNe.kI4OmtPqIuDD9URP2WUxbBodvaWbdVigLfC', 'Primary 2', 'Male', NULL, '17615539069652166441804452647084.jpg', '2025-10-10 20:15:03', 0),
(156, 'Abdulbas', 'Umar', 'Said', '0000-00-00', '', 'albayan.abdulbasumar@gmail.com', 'AL-B/2025/0093', '$2y$10$xMk2MfWH4jrxFQ69PfVxpuWmaqVR.9uk276D19FiPIlu.Kr26Wpue', 'Primary 2', 'Male', NULL, '17615540567818607328056482605330.jpg', '2025-10-10 20:20:44', 0),
(179, 'Idris', 'Garba', '', '0000-00-00', '', 'albayan.idrisgarba@gmail.com', 'AL-B/2025/0092', '$2y$10$lm16/xlzCrkRXleh/ehGU.xy1p9/ZJtCqdjpqRJ1cis7nC9DIbzVS', 'Primary 1', 'Male', NULL, 'AL-B-2025-0092.jpg', '0000-00-00 00:00:00', 1),
(181, 'Sulaiman', 'Abdullahi', '', '0000-00-00', '', 'albayan.sulaimanabdullahi@gmail.com', 'AL-B/2025/0090', '$2y$10$VULj6eEqSfDBq1xMIXPSaO7mLMzGxnR4jllc6vnK9FJLqWpzm3KKi', 'Primary 1', 'Male', 'Abubakar Bn Abu-Quhafa (Pink House)', 'AL-B-2025-0090.jpg', '2025-10-12 06:13:21', 0),
(182, 'Sulaiman', 'Halilu', '', '0000-00-00', '', 'albayan.sulaimanhalilu@gmail.com', 'AL-B/2025/0089', '$2y$10$88yhOx4GRSDguTNOyWTig.q6AjkZapzzHhR3WdgATAvxJ.aCWjqYi', 'Primary 1', 'Male', NULL, '17612152171094874095286148641153.jpg', '2025-10-12 06:14:06', 0),
(183, 'Shuaibu', 'Saedu', 'Zubairu', '0000-00-00', '', 'albayan.shuaibusaedu@gmail.com', 'AL-B/2025/0088', '$2y$10$.dFV/3RRiU0YA7L07ByceuGblU4xOlJdTt24ajZ6scaJa5fm.cKhK', 'Primary 1', 'Male', 'Umar Bn Khattab (Yellow House)', '17612155461309135395769735593155.jpg', '2025-10-12 06:14:57', 0),
(184, 'Umar', 'Abdullahi', 'Daiyabu', '0000-00-00', '', 'albayan.umarabdullahi@gmail.com', 'AL-B/2025/0087', '$2y$10$RL0JR4UmLXK9NPVO.OtOf.CzIV1QDRgG2ltNVJrLnlaKQDjjyPYDi', 'Primary 1', 'Male', 'Aliyu Bn Abuthalib (Green House)', 'AL-B-2025-0087.jpg', '2025-10-12 06:15:45', 0),
(185, 'Yakubu', 'Garba', '', '0000-00-00', '', 'albayan.yakubugarba@gmail.com', 'AL-B/2025/0086', '$2y$10$NVJimuzw.3e4LF.MAReVXuSE4CgTL/CwTNpWFtuom/Oht2upF1TkK', 'Primary 1', 'Male', NULL, 'AL-B-2025-0086.jpg', '2025-10-12 06:16:30', 0),
(186, 'Yakubu', 'Yushau', 'Zubairu', '0000-00-00', '', 'albayan.yakubuyushau@gmail.com', 'AL-B/2025/0085', '$2y$10$Wm6IBl.Lk7oB2W7XcrSUR.KBcWXwdyI2znsrTmkmjZHM1mwrDHZIy', 'Primary 1', 'Male', 'Umar Bn Khattab (Yellow House)', '1761215697205431086044706385025.jpg', '2025-10-12 06:17:12', 0),
(187, 'Yusuf', 'Hassan', '', '0000-00-00', '', 'albayan.yusufhassan@gmail.com', 'AL-B/2025/0084', '$2y$10$a7tCzDzTdm7QAP7IQBs8Mu/7TPURo321DI5I.mACEgAjWqbmkbimC', 'Primary 1', 'Male', NULL, '17612153255688537828165260152890.jpg', '2025-10-12 06:17:38', 0),
(188, 'Yusuf', 'Umar', '', '0000-00-00', '', 'albayan.yusufumar@gmail.com', 'AL-B/2025/0083', '$2y$10$4N.tQOpLZoOfuY2WgScoauh3Gnw0pqg1u/mFU/zr.N0p4D9aQ6VFW', 'Primary 1', 'Male', NULL, 'AL-B-2025-0083.jpg', '2025-10-12 06:18:13', 0),
(190, 'Aisha', 'Kabiru', '', '0000-00-00', '', 'albayan.aishakabiru@gmail.com', 'AL-B/2025/0082', '$2y$10$Lv.ebQ43Dlxj05YxseOty.OZ5yCSFmuOE4bz.yCWmYq4uFiFZ9XwG', 'Primary 1', 'Female', 'Umar Bn Khattab (Yellow House)', '17612153743644579706473050234519.jpg', '2025-10-12 06:19:03', 0),
(191, 'Fadila', 'Basiru', '', '0000-00-00', '', 'albayan.fadilabasiru@gmail.com', 'AL-B/2025/0081', '$2y$10$E90FYyv/rmYqfo7HlEnvJeCBV1cOSEDlLdMi8pp1gAUDzsXQy58aa', 'Primary 1', 'Female', NULL, 'AL-B-2025-0081.jpg', '0000-00-00 00:00:00', 0),
(192, 'Hafsat', 'Hassan', '', '0000-00-00', '', 'albayan.hafsathassan@gmail.com', 'AL-B/2025/0080', '$2y$10$G2BMEn1ig2.zTF2w2KUd9uJv9YNxCWnW6mHNusF8cj8umJQ02POYK', 'Primary 1', 'Female', 'Umar Bn Khattab (Yellow House)', 'AL-B-2025-0080.jpg', '2025-10-12 06:20:09', 0),
(193, 'Hauwau', 'Ahmad', '', '0000-00-00', '', 'albayan.hauwauahmad@gmail.com', 'AL-B/2025/0079', '$2y$10$P0XCUqD1fOfGnIJ6KuAqyubhSshVG8F0Xhs1sNTjwpRr2HoJ4dD9i', 'Primary 1', 'Female', 'Umar Bn Khattab (Yellow House)', 'AL-B-2025-0079.jpg', '2025-10-12 06:20:52', 0),
(194, 'Hauwau', 'Musa', 'Umar', '0000-00-00', '', 'albayan.hauwaumusa@gmail.com', 'AL-B/2025/0078', '$2y$10$KfLFPH10G5JAjkWUmSwHrel3pTz5KLzS.pwvSmaDir.bNPsSL2/ne', 'Primary 1', 'Female', 'Abubakar Bn Abu-Quhafa (Pink House)', 'AL-B-2025-0078.jpg', '2025-10-12 06:21:26', 0),
(195, 'Khadija', 'Lukman', '', '0000-00-00', '', 'albayan.khadijalukman@gmail.com', 'AL-B/2025/0077', '$2y$10$6PjE4o8fYLY/f5pmncjEYO.1G53JadXNlpLPW84HA3bP6O8QmAMUG', 'Primary 1', 'Female', 'Umar Bn Khattab (Yellow House)', 'AL-B-2025-0077.jpg', '2025-10-12 06:22:09', 0),
(196, 'Khadija', 'Sulaiman', '', '0000-00-00', '', 'albayan.khadijasulaiman@gmail.com', 'AL-B/2025/0076', '$2y$10$NBS9BPEo2y5x3fOYS3l7jOq46LRO4faX0/Hus2.6vRTnoksG5xOrC', 'Primary 1', 'Female', 'Aliyu Bn Abuthalib (Green House)', '17612156360628417819755684482049.jpg', '2025-10-12 06:22:48', 0),
(198, 'Layusa', 'Abdullahi', '', '0000-00-00', '', 'albayan.layusaabdullahi@gmail.com', 'AL-B/2025/0075', '$2y$10$n/n8bNeNv46W31ZCuo.6W.GzzJtMz0z1ADIE6dPPss9xVvW6zsvUi', 'Primary 1', 'Female', NULL, 'AL-B-2025-0075.jpg', '0000-00-00 00:00:00', 0),
(199, 'Ramlat', 'Ayuba', 'Ibrahim', '0000-00-00', '', 'albayan.ramlatayuba@gmail.com', 'AL-B/2025/0074', '$2y$10$SV/A4IHZ6qCc3aVQ0O0byeFE6aRGvtqf929qAyKCXgFCKUDgFjUie', 'Primary 1', 'Female', NULL, 'AL-B-2025-0074.jpg', '2025-10-12 06:24:11', 0),
(200, 'Abdulshakur', 'Sauban', '', NULL, NULL, 'albayan.abdulshakursauban@gmail.com', 'AL-B/2025/0073', '$2y$10$1LnjrvCO6FaQLSC6a6mP3O4ef60M2zyeYbJOup7wiJWMF66YNtg2C', 'Primary 4', NULL, NULL, '17612146340276568015240891571195.jpg', '2025-10-12 06:33:23', 0),
(201, 'Abdulrahman', 'Abdullahi', '', NULL, NULL, 'albayan.Abdulrahmanabdullahi@gmail.com', 'AL-B/2025/0072', '$2y$10$BUXNtOM10iNsnDXy5DBEKOwJrdzDqI35BqPUA4EQUZLXZwYoC8Be2', 'Primary 4', NULL, 'Aliyu Bn Abuthalib (Green House)', '17612137438035160606594814002077.jpg', '2025-10-12 06:34:05', 0),
(202, 'Anas', 'Abdullahi', '', NULL, NULL, 'albayan.anasabdullahi@gmail.com', 'AL-B/2025/0071', '$2y$10$Ksqi.SF3OaTrGdxv3qfjp.uz8HKpxYS.fXaYNPcn6L69Ke7G4V4Um', 'Primary 4', NULL, NULL, '17615565015555518362656351857199.jpg', '2025-10-12 06:34:35', 0),
(204, 'Ahmad', 'Muhammad', '', NULL, NULL, 'albayan.ahmadmuhammad@gmail.com', 'AL-B/2025/0070', '$2y$10$NA/OUvX1lRQxG5oVTfGYBuOGpI.lxVdh9DPcC5WCQOauQxkrWn5iu', 'Primary 4', NULL, 'Umar Bn Khattab (Yellow House)', '17612144280116840218781327427471.jpg', '2025-10-12 06:35:15', 0),
(205, 'Ahmad', 'Abdullahi', '', NULL, NULL, 'albayan.ahmadabdullahi@gmail.com', 'AL-B/2025/0069', '$2y$10$BFel/ueneSU.50lgRfOEyO6BCCKSJCp39SVq7fSwMEkZWcsOapUEK', 'Primary 4', NULL, NULL, '17615564507015285537901925850408.jpg', '2025-10-12 06:35:54', 0),
(206, 'Aliyu', 'Jibrin', '', NULL, NULL, 'albayan.aliyujibrin@gmail.com', 'AL-B/2025/0068', '$2y$10$sFJFTD.XiTZeQNMhdKkysud5T1J5x9X6HZp8O2rZMhmDruOQaMv86', 'Primary 4', NULL, NULL, '17612142813255229944689468068376.jpg', '2025-10-12 06:36:24', 0),
(207, 'Hussaini', 'Adamu', '', NULL, NULL, 'albayan.hussainiadamu@gmail.com', 'AL-B/2025/0067', '$2y$10$8txGyp.0VW.3AWXD585SGubulBmZYefZJo4hwXdQHrPZeGkjJz39q', 'Primary 4', NULL, 'Umar Bn Khattab (Yellow House)', '17612897603851502181858689301995.jpg', '2025-10-12 06:37:10', 0),
(208, 'Ibrahim', 'Zubairu', '', NULL, NULL, 'albayan.ibrahimzubairu@gmail.com', 'AL-B/2025/0066', '$2y$10$XaHKHT.3GdP0cLZKrlzFdOaQgb2q.8Wq83vSwAeNV/ZH5n4X6BPrG', 'Primary 4', NULL, NULL, '17615569357735038185133043066663.jpg', '2025-10-12 06:37:38', 0),
(209, 'Muhammad', 'Bilyaminu', '', NULL, NULL, 'albayan.muhammadbilyaminu@gmail.com', 'AL-B/2025/0065', '$2y$10$YLC3WW949XvUZhVRshnWoOvDl.AzyGHsvWas8sN2P1GOGY7XLpU3.', 'Primary 4', NULL, NULL, '17612141081997190500479041118504.jpg', '2025-10-12 06:38:14', 0),
(211, 'Muhammad', 'Rabiu', '', NULL, NULL, 'albayan.Muhammadrabiu@gmail.com', 'AL-B/2025/0064', '$2y$10$RiI9qYMkIpReN2492hZDr.dsErEAQy8QC3u7u7Flsts.RTHv5GjiG', 'Primary 4', NULL, NULL, '17624155457256046620018161145336.jpg', '2025-10-12 06:40:06', 0),
(216, 'Muhammad', 'Sani', 'Danlami', NULL, NULL, 'albayan.muhammadsani4@gmail.com', 'AL-B/2025/0063', '$2y$10$phb7TTuiLg8skq26JRFtY.sUykQeMAqe3Gc1tvwIEFkTQfEgteqwy', 'Primary 4', NULL, NULL, '', '2025-10-12 06:42:12', 0),
(217, 'Sudais', 'Umar', 'Saeed', NULL, NULL, 'albayan.sudaisumar@gmail.com', 'AL-B/2025/0062', '$2y$10$Or0f/tKfJf6HXSXuLMUmxulqvi46uUhKeCkEzq/Yj/5idIkS7CpBS', 'Primary 4', NULL, 'Abubakar Bn Abu-Quhafa (Pink House)', '17612148550911453076642606741018.jpg', '2025-10-12 06:42:59', 0),
(218, 'Saeed', 'Abubakar', '', NULL, NULL, 'albayan.saeedabubakar@gmail.com', 'AL-B/2025/0061', '$2y$10$/zHdGcwWB71Dqt4qYvssCOZf5nA3FutVb2BVxFQWO8qWsybMMDTF6', 'Primary 4', NULL, NULL, '17612138763258118756687730403416.jpg', '2025-10-12 06:43:32', 0),
(219, 'Yahuza', 'Abdullahi', '', NULL, NULL, 'albayan.yahuzaabdullahi@gmail.com', 'AL-B/2025/0060', '$2y$10$AYMDM3ZHg9I1RifydWFrbu3bJRgDC073Oti2knwKmi3WbJ/oeY4cy', 'Primary 4', NULL, 'Abubakar Bn Abu-Quhafa (Pink House)', '17615565453073516424494199460346.jpg', '2025-10-12 06:44:26', 0),
(220, 'Yusuf', 'Danlami', '', NULL, NULL, 'albayan.yusufdanlami@gmail.com', 'AL-B/2025/0059', '$2y$10$uGGklaxou7J3aH5o7rvK3O7Tq2.7uCb0u1CU59ZX/oPNq5CVawdLW', 'Primary 4', NULL, 'Usman Bn Affan (Blue House)', '17615567724027055872603840515812.jpg', '2025-10-12 06:44:59', 0),
(221, 'Asiya', 'Abdullahi', '', NULL, NULL, 'albayan.asiyaabdullahi@gmail.com', 'AL-B/2025/0058', '$2y$10$jbVbcvptBsi9QToHl1x7wOKmyJIO0k.YUbxrk1e.sYn/BQf/yUy8u', 'Primary 4', NULL, NULL, '17612138210655707701260292987392.jpg', '2025-10-12 06:45:34', 0),
(222, 'Aisha', 'Khalid', '', NULL, NULL, 'albayan.aishakhalid@gmail.com', 'AL-B/2025/0057', '$2y$10$6iZs6sB0ViKDUtUx2AKra.cuP9HKdYYMgMG5Bh.Zrto.e2jyFq03C', 'Primary 4', NULL, NULL, '17615568785175164315270739062273.jpg', '2025-10-12 06:46:14', 0),
(223, 'Amira', 'Suleiman', '', NULL, NULL, 'albayan.amirasuleiman@gmail.com', 'AL-B/2025/0056', '$2y$10$DwyOes/t8PmvqH0iH0W09ewCthje1tw3uzG3t33BX8gW1twqECJOi', 'Primary 4', NULL, NULL, '17612147493339148089315655128737.jpg', '2025-10-12 06:46:52', 0),
(226, 'Fatima', 'Adamu', '', NULL, NULL, 'albayan.fatimaadamu2@gmail.com', 'AL-B/2025/0055', '$2y$10$pk3ipQyTyoL3goCUKwtSnOdmOYrOW3jEITx56pKs8nkbFWb32mFbW', 'Primary 4', NULL, NULL, '17612139489601104065084780130719.jpg', '2025-10-12 06:47:43', 0),
(227, 'Faiza', 'Salisu', '', NULL, NULL, 'albayan.faizasalisu@gmail.com', 'AL-B/2025/0054', '$2y$10$tfbgC/qVxhCP32Fi5lw8BO4IkgJnlonYm4CKHeTTb3itKHfkD.hbO', 'Primary 4', NULL, 'Umar Bn Khattab (Yellow House)', '17612145020305393147270176442075.jpg', '2025-10-12 06:48:12', 0),
(228, 'Hauwau', 'Idris', '', NULL, NULL, 'albayan.hauwauidris@gmail.com', 'AL-B/2025/0053', '$2y$10$xVCqLR1zaJUZmBciGxbkW.V9EANKvxnx4SDEiqOb6vhjTH9y4tqtq', 'Primary 4', NULL, 'Umar Bn Khattab (Yellow House)', '17612142233354758236046920918203.jpg', '2025-10-12 06:48:47', 0),
(229, 'Ladifa', 'Dayyabu', '', NULL, NULL, 'albayan.ladifadayyabu@gmail.com', 'AL-B/2025/0052', '$2y$10$aT2ikQymEdvwsr3CTAsqquHVEJTvC3VPT/kgLsd8bfRk2fnqAS7mm', 'Primary 4', NULL, 'Abubakar Bn Abu-Quhafa (Pink House)', '17615568261135378133463147952145.jpg', '2025-10-12 06:49:15', 0),
(230, 'Maryam', 'Salisu', '', NULL, NULL, 'albayan.maryamsalisu@gmail.com', 'AL-B/2025/0051', '$2y$10$Wcq7t8BpOQ0jAT7ySYyDqeGv6SZOHqX6gequIur151umnyyW/rExe', 'Primary 4', NULL, 'Aliyu Bn Abuthalib (Green House)', '1761214554309182231902582447289.jpg', '2025-10-12 06:50:21', 0),
(231, 'Maryam', 'Abubakar', '', NULL, NULL, 'albayan.maryamabubakar@gmail.com', 'AL-B/2025/0050', '$2y$10$X2hNfVF/0aAcFsUABoXyy.6B35lIRdt9tuhWsHrThviPii0gWAdtG', 'Primary 4', NULL, NULL, '1761556602011954770433642284138.jpg', '2025-10-12 06:50:48', 0),
(232, 'Maryam', 'Lukman', '', NULL, NULL, 'albayan.maryamlukman@gmail.com', 'AL-B/2025/0049', '$2y$10$kN4spiZ4cBMpeBkCkUiNp..utD2zBbblWu/9E.ajZg/noOX6y0XRq', 'Primary 4', NULL, NULL, '1761214367494216419674621152444.jpg', '2025-10-12 06:51:18', 0),
(233, 'Maryam', 'Aminu', '', NULL, NULL, 'albayan.maryamaminu@gmail.com', 'AL-B/2025/0048', '$2y$10$9O47YAGJ/FfQ7qb0TkRbT.OPftpebuPJ4iMCG3fV5XQFP/FVykbGG', 'Primary 4', NULL, 'Aliyu Bn Abuthalib (Green House)', '17615567143122330583608244327649.jpg', '2025-10-12 06:51:51', 0),
(234, 'Rabiatu', 'Abubakar', 'Adam', NULL, NULL, 'albayan.rabiaabubakar@gmail.com', 'AL-B/2025/0047', '$2y$10$/79OzHlgOqinZ1C5mTCY4OEVvDgU29c17iTAUhv.2oRUDxBkeQ9x6', 'Primary 4', NULL, NULL, '17615566592931750777905380768543.jpg', '2025-10-12 06:52:20', 0),
(235, 'Rukayya', 'Shuaibu', '', NULL, NULL, 'albayan.rukayyashuaibu@gmail.com', 'AL-B/2025/0046', '$2y$10$ZA9SmXiCYXvfr4LHZuBDBuPQxSztuDMXGBmP4Hx/0Ms6dAvlRwDWK', 'Primary 4', NULL, NULL, '1761214694271693801861297717317.jpg', '2025-10-12 06:53:00', 0),
(236, 'Yusheu', 'Zubairu', '', NULL, NULL, 'albayan.yusheuzubairu@gmail.com', 'AL-B/2025/0045', '$2y$10$U8oz/h1kx0l39Gdd1DQHV.QdnkeDWEC/9Quvv3pv3V8on7NFEg4v.', 'Primary 4', NULL, NULL, '17612149597445589274662579032291.jpg', '2025-10-12 06:53:36', 0),
(237, 'Shuaibu', 'Garba', '', NULL, NULL, 'albayan.shuaibugarba@gmail.com', 'AL-B/2025/0044', '$2y$10$FKqaFXywq0BVLJWG3JH.reYhuR13XH2DiKURlkYXTxACOZ.bTPzF2', 'Primary 4', NULL, NULL, '17612141684958984312863777395510.jpg', '2025-10-12 06:54:07', 0),
(246, 'Alhajinuru', 'Rabiu', 'Munkaila', '0000-00-00', '', 'albayan.alhajinururabiu@gmail.com', 'AL-B/2025/0040', '$2y$10$Xr7oMd7ZP8S0bHrWBUoUVOcKwUXMfmKOHCARvWSO3a5xo7agI8.iu', 'Primary 5', 'Male', NULL, 'AL-B-2025-0040.jpg', '2025-10-13 09:24:10', 0),
(247, 'Kabiru', 'Shuaibu', '', '0000-00-00', '', 'albayan.kabirushuaibu@gmail.com', 'AL-B/2025/0041', '$2y$10$lYynA0S9xizZX0ncgEWA3ukY1.l3zxcbmtAntcH3kRvfrrBwLZj7i', 'Primary 5', 'Male', 'Usman Bn Affan (Blue House)', 'student_68ecc5698ccdc1.39942681.jpg', '2025-10-13 09:24:57', 0),
(248, 'Aisha', 'Ayuba', '', '0000-00-00', '', 'albayan.aishaayuba@gmail.com', 'AL-B/2025/0042', '$2y$10$qXKbpVGjM.0y0o/LTKGOMeIarsDegWRo3tGnjC7Ul/t.Vi1KA3jVC', 'Primary 5', 'Female', 'Abubakar Bn Abu-Quhafa (Pink House)', 'student_68ecc59320cdb8.56948551.jpg', '2025-10-13 09:25:39', 0),
(250, 'Hauwau', 'Ibrahim', 'Tadet', '0000-00-00', '', 'albayan.hauwauibrahim@gmail.com', 'AL-B/2025/0172', '$2y$10$Jcwaj2p95h.xFRn2mwg.e.8f4fOu/X5A85tmobcGe6CD10vcSBx22', 'Primary 5', 'Female', NULL, 'student_68f2010e0d28f0.81930005.jpg', '2025-10-17 08:40:46', 0),
(255, 'Aminu', 'Dauda', 'Aminu', '0000-00-00', '', 'albayan.aminudauda@gmail.com', 'AL-B/2025/0039', '$2y$10$QwyOuS031acEx1CEPTHzmOeIZVFangRRsEAK4uz.ggnZRThY/8YR.', 'Primary 5', 'Male', NULL, 'IMG_20251007_112204_577.jpg', '2025-10-23 08:22:44', 0),
(256, 'Sadiya', 'Ibrahim', 'Hussaini', '0000-00-00', '', 'albayan.sadiyaibrahim@gmail.com', 'AL-B/2025/0038', '$2y$10$WtY8EIcopmc8ERbjIMhsD.aGnW/IfJmKE3RbihM018wnx/0pqqXsy', 'Primary 1', 'Female', NULL, '17612158784322623170203060235994.jpg', '2025-10-23 10:37:18', 0),
(257, 'Shuaibu', 'Idris', '', '0000-00-00', '', 'albayan.shuaibuidris@gmail.com', 'AL-B/2025/0164', '$2y$10$8cbJmuZT3ks8V4AcOkP/yu0.2cwD.MyyPxywfTu2Qb9Z5BElAQjyu', 'Primary 5', 'Male', 'Usman Bn Affan (Blue House)', 'student_68ff3c36618b01.45611520.jpg', '2025-10-27 09:32:38', 0),
(259, 'Rafiatu', 'Muktar', 'Ibrahim', '0000-00-00', '', 'albayan.rafiatumuktar@gmail.com', 'AL-B/2025/0037', '$2y$10$dIM.KSAk11M8KjlwX9IoR.m63NZ8cjjBwMC3VEc8umZtk00qtDiCi', 'Primary 2', 'Female', 'Aliyu Bn Abuthalib (Green House)', '17621672609196744569520641800492.jpg', '2025-10-29 06:41:57', 0),
(260, 'Jamilu', 'Rabiu', '', '0000-00-00', '', 'albayan.jamilurabiu@gmail.com', 'AL-B/2025/0036', '$2y$10$5MmQxxV8gU9piAbJ9NXfn.rLhMuV17qkfCSwrTR9toQHHgCOk2r/G', 'Nursery 3', 'Male', NULL, '1768809586_IMG_20260119_085916_549.jpg', '2025-10-29 07:06:18', 0),
(261, 'Abdulmalik', 'Ibrahim', 'Hussaini', '0000-00-00', '', 'albayan.abdulmalikibrahim@gmail.com', 'AL-B/2025/0035', '$2y$10$7I6y8IKSr2QdCIHQhi5TkeEAnhkmc6mGcsswZv2VoNUMjB1ayiIca', 'Nursery 3', 'Male', 'Aliyu Bn Abuthalib (Green House)', '1763630320_1000209085.jpg', '2025-10-29 07:07:25', 0),
(262, 'Muhammad', 'Muhusin', 'Hassan', '0000-00-00', '', 'albayan.Muhammadmuhusin@gmail.com', 'AL-B/2025/0034', '$2y$10$Z6sHOtpZvBGSXRAk2VtZJe/f2heni1bi2YB.lXfwTEe7m2L8YZEX2', 'Primary 2', 'Male', 'Umar Bn Khattab (Yellow House)', '1762167310121191685677954908799.jpg', '2025-10-29 07:24:28', 0),
(264, 'Abdulmannan', 'Aminu', '', '0000-00-00', '', 'albayan.abdulmannanaminu@gmail.com', 'AL-B/2025/0033', '$2y$10$M/ZxPx1pFtpz7bY00/mDouttudrwS9YWU2kvQrDG0RJ/bi4D7Rf12', 'Primary 1', 'Male', NULL, 'AL-B-2025-0033.jpg', '0000-00-00 00:00:00', 0),
(269, 'Zainab', 'Abdullahi', 'Abdulmumin', NULL, NULL, 'albayan.zainababdullahi@gmail.com', 'AL-B/2025/0002', '$2y$10$VhIOOPPSOyhQnr3FuwLOuO6UnnzWjVr2U98qPXGbke8GqgW.dnr6u', 'Primary 4', NULL, NULL, 'AL-B-2025-0002.jpg', '2026-01-16 09:42:52', 4),
(270, 'Shamsiya', 'Bello', 'Umar', '0000-00-00', '', 'albayan.shamsiyabello@gmail.com', 'AL-B/2025/0003', '$2y$10$eAHAAR8Mr5aG.Wy65QmJj.G7rR0Bt4oykwDo/fK/FrQa1V3/EL5Qu', 'Nursery 3', 'Female', NULL, '1768809520_IMG_20260119_085802_483.jpg', '2026-01-19 07:49:13', 0),
(272, 'Zainab', 'Bello', 'Umar', '0000-00-00', '', 'albayan.zainabbello@gmail.com', 'AL-B/2025/0009', '$2y$10$036GvB2t2xa6FbGnkZl6g.ROddhCH1phx/AwWqjqmzULIhT97IB9i', 'Primary 1', 'Female', NULL, 'AL-B-2025-0009.jpg', '2026-01-19 07:51:32', 0),
(273, 'Husna', 'Bello', 'Umar', '0000-00-00', '', 'albayan.husnabello@gmail.com', 'AL-B/2025/0007', '$2y$10$kIwMnGmwWthja6Kr9HLl0uS.P70SF99Aix/JjueffMFpyFF4CPo1m', 'Nursery 2', 'Female', NULL, 'AL-B-2025-0007.jpg', '2026-01-19 07:52:21', 0),
(274, 'Ummulkhairi', 'Habibu', 'Abdullahi', '0000-00-00', '', 'albayan.ummulkhairihabibu@gmail.com', 'AL-B/2025/0004', '$2y$10$ZuQNpoUhZS1.K/6Covq1iOlcolGToV2zwLfNaeWAgFFFfea6CX1ky', 'Nursery 1', 'Female', NULL, 'AL-B-2025-0004.jpg', '2026-01-19 07:54:19', 0),
(276, 'Fatima', 'Khamis', 'Muhammad', NULL, NULL, 'albayan.fatimakhamis@gmail.com', 'AL-B/2025/0006', '$2y$10$Y4HFVJrK1u2391f3h9lvh.A5b0HIk3NyTJcKDYKuAp498PGPImq8m', 'Primary 3', NULL, NULL, '1772101519_IMG_20260226_111953_480.jpg', '2026-02-03 10:32:51', 0),
(280, 'Mahmud', 'Khamis', 'Muhammad', '0000-00-00', '', 'albayan.mahmudkhamis@gmail.com', 'AL-B/2025/0008', '$2y$10$ZHFF09t/0zQOsRDBXGTkXuWvon/ceJ9geHcKXJ.jwH1o3g5ZFRrlK', 'Primary 2', 'Male', NULL, '1772101601_IMG_20260226_110926_712.jpg', '2026-02-03 10:35:09', 0),
(282, 'Adamu', 'Jafaru', '', '0000-00-00', '', 'albayan.adamujafaru@gmail.com', 'AL-B/2025/0010', '$2y$10$Xls0twBE6ccwr0eHUhGI3OIPhcuie95GmdmuoW0nH5spUyvBhmbVe', 'Primary 2', 'Male', NULL, '1770115580_IMG_20260203_114226_782.jpg', '2026-02-03 10:41:00', 0),
(283, 'Ibrahim', 'Hussaini', 'Ibrahim', NULL, NULL, 'albayan.Ibrahimhussaini@gmail.com', 'AL-B/2025/0021', '$2y$10$K2DdUXZNx6fxCE5gPhxBouf0nv.qe1QJMH.dNGP6pcRXiS6QVI9ny', 'Primary 3', NULL, NULL, '1772101496_IMG_20260226_112004_352.jpg', '2026-02-26 10:22:53', 0),
(284, 'Abdulrahman', 'Aliyu', '', '0000-00-00', '', 'albayan.abdulrahmanaliyu@gmail.com', 'AL-B/2025/0022', '$2y$10$eVsWnLlbOTu8G51nv2DUx.03vj7S/47r/XdthG8AEF1/PjZz8qmKK', 'Nursery 2', 'Male', NULL, 'AL-B-2025-0022.jpg', '2026-02-26 10:39:50', 0),
(285, 'Asmau', 'Abubakar', 'Haruna', '0000-00-00', '', 'albayan.asmauabubakar@gmail.com', 'AL-B/2025/0043', '$2y$10$Y5Lbu5LctQVZ5MEW2ol7NuIV2xMrrfntX1Yq8CVmaX51d/PPTA5j.', 'Nursery 1', 'Female', NULL, 'AL-B-2025-0043.jpg', '2026-02-26 10:50:29', 0),
(286, 'Zahrau', 'Bello', 'Umar', '0000-00-00', '', 'albayan.zahraubello@gmail.com', 'AL-B/2025/0005', '$2y$10$lfYMlzHMKbV.Pp8/j/iBzO6DinIF4pIB1cztIzuBMq.eP6T43p1PG', 'Primary 1', 'Female', NULL, 'AL-B-2025-0005.jpg', '2026-03-06 09:45:00', 0),
(290, 'Aisha', 'Ahmad', 'Isah', '0000-00-00', 'O+', 'albayan.aishaabdullahi@gmail.com', 'AL-B/2025/0011', '$2y$10$2ChqaVgBxmcNBq9kVvduJOnfTXmMHvniP5bWjy63HGy4j7rQecgNK', 'Nursery 1', 'Female', NULL, 'AL-B-2025-0011.jpg', '2026-03-11 07:27:01', 0),
(301, 'Maryam', 'Saminu', 'Junaidu', '0000-00-00', '', 'albayan.maryamsaminu@gmail.com', 'AL-B/2026/0201', '$2y$10$dcfJgX9f5YHfva6BHgmdcexGwqDa9rIPtB3GfZYXMM9d0ExoK22AS', 'Nursery 1', 'Female', NULL, 'AL-B-2026-0201.jpg', '2026-05-12 11:17:56', 0),
(302, 'Sambo', 'Ibrahim', 'Halilu', '0000-00-00', 'A+', 'albayan.samboibrahim@gmail.com', 'AL-B/2026/0202', '$2y$10$Rw7uCr8FCwCuH0g4RvYi.ewiF7s.MxvKrOqIt2oxr3LXOwLR64ji6', 'Nursery 1', 'Male', NULL, 'AL-B-2026-0202.jpg', '2026-05-12 11:21:14', 0);

-- --------------------------------------------------------

--
-- Table structure for table `student_idcards`
--

CREATE TABLE `student_idcards` (
  `id` int(11) NOT NULL,
  `student_id` int(11) NOT NULL,
  `card_number` varchar(50) DEFAULT NULL,
  `qr_token` varchar(100) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `subjects`
--

CREATE TABLE `subjects` (
  `id` int(11) NOT NULL,
  `subject_name` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `subjects`
--

INSERT INTO `subjects` (`id`, `subject_name`) VALUES
(1, 'English Language'),
(2, 'Basic science'),
(3, 'Civic education'),
(4, 'PHE'),
(5, 'IRS'),
(6, 'Computer Science'),
(7, 'Social Studies'),
(8, 'Mathematics'),
(11, 'General Knowledge'),
(12, 'Pre-Reading'),
(13, 'Numbers'),
(14, 'Letters'),
(15, 'Science'),
(16, 'Social Habit'),
(17, 'Rhyme'),
(18, 'Health Habit'),
(19, 'حُرُوف'),
(20, 'العَرَبِيَّة'),
(21, 'القُرْآن');

-- --------------------------------------------------------

--
-- Table structure for table `super_admin_code`
--

CREATE TABLE `super_admin_code` (
  `id` int(11) NOT NULL,
  `secret_code` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `teachers`
--

CREATE TABLE `teachers` (
  `id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `username` varchar(100) DEFAULT NULL,
  `password` varchar(255) DEFAULT NULL,
  `is_super_admin` tinyint(1) DEFAULT 0,
  `status` tinyint(1) DEFAULT 1,
  `class` varchar(50) NOT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `photo` varchar(255) DEFAULT NULL,
  `class_teacher_signature` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `house` varchar(255) DEFAULT NULL,
  `email` varchar(150) DEFAULT NULL,
  `gender` varchar(20) DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `qualifications` varchar(255) DEFAULT NULL,
  `class_assigned` varchar(100) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `username_updated_at` datetime DEFAULT NULL,
  `password_updated_at` datetime DEFAULT NULL,
  `reset_token` varchar(255) DEFAULT NULL,
  `reset_expires` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `teachers`
--

INSERT INTO `teachers` (`id`, `name`, `username`, `password`, `is_super_admin`, `status`, `class`, `phone`, `photo`, `class_teacher_signature`, `created_at`, `house`, `email`, `gender`, `dob`, `qualifications`, `class_assigned`, `address`, `username_updated_at`, `password_updated_at`, `reset_token`, `reset_expires`) VALUES
(2, 'Layusa Hussain ', 'hlayusa', '$2y$10$/4MGKfTpkbsjTTj2VF.6sOxMoPhbHlUaps61rL30Ri7GKyonT5S46', 0, 1, 'Primary 4', '08169032994', '1772063362_1763367246_IMG_20251028_081659_2.jpg', '1776753493_1763370534_IMG_20251117_100623_399~2.png', '2025-10-18 01:18:37', 'Abubakar Bn Abu-Quhafa (Pink House)', 'layusahussaini3a@gmail.com', 'Female', '1995-04-21', 'OND', NULL, 'Durlong', NULL, NULL, NULL, NULL),
(3, 'Jamima Abdullahi Bako', 'ajamima', '$2y$10$WDVGufTQJPGWCL7uMTOpGu4JqQC/odp7F0VjKPB0D59sz490OWG/O', 0, 1, 'Primary 3', '07044987258', '1772063428_1763376505_IMG_20251117_101302_7.jpg', '1776753502_1763370875_IMG_20251117_101124_590~2.png', '2025-10-20 17:43:47', 'Aliyu Bn Abuthalib (Green House)', 'Jamimabako@gmail.come', 'Female', '2026-10-08', 'NCE', NULL, 'derteng steet shendam', NULL, NULL, NULL, NULL),
(5, 'Musa Yusuf Mairiga ', 'ymairiga', '$2y$10$d4gicQ8hDd778X1yY7fspetWKRougLq9VwLfM5J6vJESXpUnZ57wS', 1, 1, 'Primary 5', '08134639207', '1775377398_1772929070_1763963887_20251124_065704.jpg', '1776753473_1763368608_IMG_20251117_093257_458~2.png', '2025-10-22 21:59:47', 'Usman Bn Affan (Blue House)', 'yusufmairiga41@gmail.com', 'Male', '1996-07-01', 'OND', NULL, 'Masallacin Juma\'at Street Shendam', '2026-04-05 20:58:03', '2026-06-08 11:42:09', '297817', '2026-05-16 22:17:17'),
(6, 'Takiyatu Abdullahi ', 'atakiyatu', '$2y$10$rqmLhO0FMglxkI1whEjH1eGg48mNxQFh7jfATM.QV5L7kgY6tXpqW', 0, 1, 'Primary 1', '08132089637', '1772063215_1761343870_Snapchat-618484868 (1).jpg', '1776753516_1771966384_1771965991322.png', '2025-10-23 05:46:53', 'Umar Bn Khattab (Yellow House)', 'takiyyatuabubakarabdullahi@gmail.com', 'Female', '1995-02-25', 'OND', NULL, 'Durlong', NULL, NULL, NULL, NULL),
(8, 'Lorinda Bigwan', 'blorinda', '$2y$10$aahr07ZW0wRxQuZMNOURTulJFwPRzjoiJv3HMeyYuimsPUsHdliQu', 0, 1, 'Nursery 3', '09032535212', '1772063287_1763368208_IMG_20251117_092855_6.jpg', '1776753564_1763370295_IMG_20251117_095354_294~2.png', '2025-10-23 05:48:18', 'Usman Bn Affan (Blue House)', 'lorindabigwan@gmail.com', 'Female', '1996-12-25', 'NCE', NULL, 'Polando ', NULL, NULL, NULL, NULL),
(9, 'Usman Abubakar Magaji', 'ausman', '$2y$10$rTeZSJl/idVUThkSSoJXvOM9mw6VUGkqTXWkiw0xVbSxVD9RYllma', 0, 1, 'Primary 2', '07042404570', '1772062887_1761562863_IMG_20241024_100342_0.jpg', '1776753544_1772062174_1763369014_IMG_20251117_093744_2.png', '2025-10-23 05:48:54', 'Aliyu Bn Abuthalib (Green House)', 'usmanmagaji3a@gmail.com', 'Male', '1984-09-24', 'NCE', NULL, 'No 59 Lotkerem Street Shendam ', NULL, '2026-04-06 08:42:08', NULL, NULL),
(10, 'Ummulkhairi Muhammad ', 'mummulkhairi', '$2y$10$iQRzaI4KBGqeiF4Kl7YlHuPAyNTbEmWhd3OAyg2hvCKNUry4/vXjK', 0, 1, 'Nursery 2', '08164226004', '1772063111_1763367384_IMG_20251117_091531_1 (1).jpg', '1776753532_1763370312_1763370180484.png', '2025-10-23 05:49:35', 'Abubakar Bn Abu-Quhafa (Pink House)', 'muhammadummulkahiri@gmail.com', 'Female', '1996-02-12', 'NCE', NULL, 'Angwan Gabar shendam', '2026-04-05 10:34:13', NULL, NULL, NULL),
(11, 'Bashir Yusuf Adamu', 'ybashir', '$2y$10$TfUhQokm.Vv6kHGerFZjmOlELJpunJi8fF/WYT6AloGJ.tWCFTQh6', 1, 1, 'Primary 6', '08060922001', '1772063609_1762605160_1762597274_1000026094 (1).jpg', '1776753450_1763369001_IMG_20251117_093851_947~2.png', '2025-10-23 05:50:12', 'Abubakar Bn Abu-Quhafa (Pink House)', 'bashiryusufadamu@gmail.com', 'Male', '1991-06-01', 'BSc', NULL, 'No 17 long gamai way shendam', NULL, NULL, NULL, NULL),
(13, 'Hassana Auwal Musa', 'ahassana', '$2y$10$4CFuS1m.MHFkYVqsn2tJtOlMaNxQxvv6mmFMXAHtxnkKs50Z6CszO', 0, 1, 'Nursery 1', '08143111721', '1776834531_1772063501_1763376769_IMG_20230707_081248-0.jpg', '1776753573_1763370861_IMG_20251117_101031_851~2.png', '2025-10-31 19:20:11', 'Umar Bn Khattab (Yellow House)', 'hassanaauwal1999@gmail.com', 'Female', '1999-04-21', 'OND', NULL, 'Tudun wada shendam ', NULL, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `teacher_audit_logs`
--

CREATE TABLE `teacher_audit_logs` (
  `id` int(11) NOT NULL,
  `teacher_id` int(11) NOT NULL,
  `action` varchar(255) NOT NULL,
  `old_value` text DEFAULT NULL,
  `new_value` text DEFAULT NULL,
  `performed_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `teacher_audit_logs`
--

INSERT INTO `teacher_audit_logs` (`id`, `teacher_id`, `action`, `old_value`, `new_value`, `performed_by`, `created_at`) VALUES
(22, 9, 'override granted', 'username override for 1 day(s)', 'username override for 1 day(s)', 5, '2026-04-05 21:07:35'),
(23, 9, 'password change', 'hidden', 'hidden', 9, '2026-04-06 08:42:08'),
(25, 11, 'override granted', 'password override for 7 day(s)', 'password override for 7 day(s)', 11, '2026-04-20 23:46:07'),
(26, 11, 'override granted', 'username override for 2 day(s)', 'username override for 2 day(s)', 11, '2026-04-20 23:52:49'),
(31, 9, 'override granted', 'password override for 1 day(s)', 'password override for 1 day(s)', 5, '2026-04-21 05:53:07'),
(32, 16, 'override granted', 'password override for 1 day(s)', 'password override for 1 day(s)', 5, '2026-04-28 13:34:28'),
(33, 16, 'username change', 'ms', 'mssolutions', 16, '2026-04-28 13:43:58'),
(34, 16, 'password change', 'hidden', 'hidden', 16, '2026-04-28 13:43:58'),
(35, 16, 'override granted', 'password override for 1 day(s)', 'password override for 1 day(s)', 16, '2026-04-28 19:01:08'),
(36, 16, 'password change', 'hidden', 'hidden', 16, '2026-04-28 19:01:26'),
(41, 6, 'Added Question', '', '{\"question\":\"When some body is ill,he or she will not be able to........\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-05-19 10:56:11'),
(42, 6, 'Added Question', '', '{\"question\":\"When some body is ill,he or she will not be able to........\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-05-19 10:56:11'),
(43, 5, 'Added Question', '', '{\"question\":\"What helps the paper kite to fly..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-19 11:31:40'),
(44, 5, 'Added Question', '', '{\"question\":\"What are the three objects that can float on water..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-19 11:33:37'),
(45, 5, 'Added Question', '', '{\"question\":\"Baby plants are called...?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-19 11:34:29'),
(46, 5, 'Added Question', '', '{\"question\":\"Testing\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-19 20:45:42'),
(47, 5, 'Added Question', '', '', 5, '2026-05-19 21:39:51'),
(48, 5, 'Added Question', '', '{\"question\":\"Hello\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-19 22:10:38'),
(49, 5, 'Added Question', '', '{\"question\":\"Which of these is a mode of water..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-20 09:40:29'),
(50, 6, 'Added Question', '', '{\"question\":\"Islam is a religion of.........\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-05-20 09:41:10'),
(51, 6, 'Added Question', '', '{\"question\":\"We should obey our......\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-05-20 09:44:09'),
(52, 5, 'Added Question', '', '{\"question\":\"Which among this is the fastest means of transportation..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-20 09:48:52'),
(53, 5, 'Added Question', '', '{\"question\":\"Drug abuse can damage your brain..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-20 09:50:01'),
(54, 6, 'Added Question', '', '{\"question\":\"When we are.....they take care for us\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-05-20 09:50:20'),
(55, 6, 'Added Question', '', '{\"question\":\"Allah give us food\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-05-20 09:52:32'),
(56, 5, 'Added Question', '', '{\"question\":\".....  Are food items from animals..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-20 09:53:45'),
(57, 5, 'Added Question', '', '{\"question\":\"Soil is used for farming..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-20 09:55:20'),
(58, 6, 'Added Question', '', '{\"question\":\"Allah sends downrain for our....\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-05-20 09:55:42'),
(59, 5, 'Added Question', '', '{\"question\":\"How many colors does your national flag has..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-20 10:00:52'),
(60, 6, 'Added Question', '', '{\"question\":\"Prophet Muhammad brought .......\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-05-20 10:02:03'),
(61, 6, 'Added Question', '', '{\"question\":\"Step of performing ablution.                Step.1 get......\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-05-20 10:06:40'),
(62, 6, 'Added Question', '', '{\"question\":\"Mention three (3) first prophets of Allah mention in the Qur\'an.                  1_________.                                  2_________.                             3_________\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-05-20 10:13:37'),
(63, 6, 'Added Question', '', '{\"question\":\"Multiplication tables.                      2*1=\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-05-21 08:25:59'),
(64, 6, 'Added Question', '', '{\"question\":\"Multiplication tables.                      2*1=\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-05-21 08:27:27'),
(65, 6, 'Added Question', '', '{\"question\":\"2*2=\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-05-21 08:30:09'),
(66, 6, 'Added Question', '', '{\"question\":\"2*3=\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-05-21 08:31:16'),
(67, 6, 'Added Question', '', '{\"question\":\"Multiplication tables.                      2*1=\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-05-21 08:31:58'),
(68, 6, 'Added Question', '', '{\"question\":\"Which of these is an electronic machine  tick all electronic machines\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-05-21 09:38:15'),
(69, 6, 'Added Question', '', '{\"question\":\"Draw a Gsm or mobile phone.\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-05-21 09:41:10'),
(70, 5, 'Added Question', '', '{\"question\":\"Refuse is refers to waste materials that are no longer needed..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 16:55:42'),
(71, 5, 'Added Question', '', '{\"question\":\"... Helps us to live with fellow human beings in peace..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 16:57:49'),
(72, 5, 'Added Question', '', '{\"question\":\"Shrine is a place where traditional worshippers worship..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 16:59:33'),
(73, 5, 'Added Question', '', '{\"question\":\"... Is a bad event that happens suddenly and it could lead to injury, damage or death..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 17:01:39'),
(74, 5, 'Added Question', '', '{\"question\":\"Home appliances are the equipment been used to do a particular job..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 17:03:22'),
(75, 5, 'Added Question', '', '{\"question\":\"..... Is one in which it\'s members do things together..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 17:05:10'),
(76, 5, 'Added Question', '', '{\"question\":\"Iron and stove are examples of home appliances..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 17:06:23'),
(77, 5, 'Added Question', '', '{\"question\":\"There are ..... types of refuse..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 17:07:40'),
(78, 5, 'Added Question', '', '{\"question\":\"Electric cooker is used for....?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 17:08:44'),
(79, 5, 'Added Question', '', '{\"question\":\"What is your name..?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 17:11:06'),
(80, 5, 'Added Question', '', '{\"question\":\"..... Is made up of a group of people..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 17:12:29'),
(81, 5, 'Added Question', '', '{\"question\":\"A good example of a community rules is to keep the environment clean..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 17:14:50'),
(82, 5, 'Added Question', '', '{\"question\":\"Members who live together have rules and regulations..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 17:15:58'),
(83, 5, 'Added Question', '', '{\"question\":\"Rules are made to promote orderliness, cooperation and happiness..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 17:17:28'),
(84, 5, 'Added Question', '', '{\"question\":\"Modern toilet are mostly found in.....?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 17:18:55'),
(85, 5, 'Added Question', '', '{\"question\":\"The following are rules and regulations in school except....?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 17:20:44'),
(86, 5, 'Added Question', '', '{\"question\":\"Sweeping and cleaning the house regularly are ways to keep our surroundings clean..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 17:27:28'),
(87, 5, 'Added Question', '', '{\"question\":\"There are ..... types of toilet..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 17:29:12'),
(88, 5, 'Added Question', '', '{\"question\":\"Flushing the toilet after every use are ways of keeping modern toilets clean..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 17:31:28'),
(89, 5, 'Added Question', '', '{\"question\":\"The following are qualities of community leaders except..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-23 17:33:02'),
(90, 5, 'Added Question', '', '{\"question\":\"According to the picture what does it represent\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-30 00:06:49'),
(91, 5, 'Added Question', '', '{\"question\":\"According to the picture what does it represent\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-30 00:19:20'),
(92, 5, 'Added Question', '', '{\"question\":\"What is this..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-30 00:30:30'),
(93, 5, 'Added Question', '', '{\"question\":\"Hi\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-30 01:16:38'),
(94, 5, 'Added Question', '', '{\"question\":\"H\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-05-30 01:51:00'),
(95, 5, 'Added Question', '', '{\"question\":\"Hi\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-01 01:00:03'),
(96, 5, 'Added Question', '', '{\"question\":\"Jko\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-01 01:07:09'),
(97, 5, 'Added Question', '', '{\"question\":\"What is this\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-01 01:49:17'),
(98, 5, 'Added Question', '', '{\"question\":\"What is this\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-01 02:31:04'),
(99, 5, 'Added Question', '', '{\"question\":\"Rearrange the following words\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-01 08:29:29'),
(100, 6, 'Added Question', '', '{\"question\":\"Road safety means using the ......carefully to prevent accident\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-01 10:39:49'),
(101, 6, 'Added Question', '', '{\"question\":\"Do not.....on the road\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-01 10:42:47'),
(102, 6, 'Added Question', '', '{\"question\":\"Look left and right and left again be fore......\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-01 10:46:18'),
(103, 6, 'Added Question', '', '{\"question\":\"........is the study that teach people about their rights\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-01 10:50:38'),
(104, 6, 'Added Question', '', '{\"question\":\"And how to be good citizens in......\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-01 10:54:18'),
(105, 6, 'Added Question', '', '{\"question\":\"Write three(3)letter word you know. 1 ........ 2.......... 3\\r\\n........... 4...........\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-01 11:33:27'),
(106, 6, 'Added Question', '', '{\"question\":\"Write three(3)letter word you know. 1 ........ 2.......... 3\\r\\n........... 4...........\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-01 11:36:08'),
(107, 6, 'Added Question', '', '{\"question\":\"Write your full name\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-01 11:37:21'),
(108, 5, 'Added Question', '', '{\"question\":\"How many colors make up a rainbow..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-02 10:50:33'),
(109, 5, 'Added Question', '', '{\"question\":\"Why did mrs ojo stay at home..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-02 10:54:24'),
(110, 5, 'Added Question', '', '{\"question\":\"The day after friday is ...?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 07:59:53'),
(111, 5, 'Added Question', '', '{\"question\":\"The sick people are treated in the ...?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 08:00:57'),
(112, 5, 'Added Question', '', '{\"question\":\"You must look left and right before crossing the road..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 08:02:38'),
(113, 5, 'Added Question', '', '{\"question\":\"How many states do we have in Nigeria..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 08:05:34'),
(114, 5, 'Added Question', '', '{\"question\":\"The color of Nigeria flag is .... And ....?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 08:07:25'),
(115, 5, 'Added Question', '', '{\"question\":\"How many local government do we have in plateau state..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 08:08:24'),
(116, 5, 'Added Question', '', '{\"question\":\"We have two types of family..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 08:09:17'),
(117, 5, 'Added Question', '', '{\"question\":\"Father is the head of the family..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 08:10:04'),
(118, 5, 'Added Question', '', '{\"question\":\"Father is the head of the house..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 08:11:36'),
(119, 5, 'Added Question', '', '{\"question\":\"PU + T =\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 08:13:01'),
(120, 5, 'Added Question', '', '{\"question\":\"How many objects do we have \\u26bd\\u26bd\\u26bd\\u26bd\\u26bd..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 08:14:24'),
(121, 5, 'Added Question', '', '{\"question\":\"Nnamdi Azikwe was the Nigeria first ...?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 08:15:57'),
(122, 5, 'Added Question', '', '{\"question\":\"Who is the governor of plateau state..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 08:17:48'),
(123, 5, 'Added Question', '', '{\"question\":\"CA + T =\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 08:18:27'),
(124, 5, 'Added Question', '', '{\"question\":\"Monkey has a long tail...?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 08:19:22'),
(125, 5, 'Added Question', '', '{\"question\":\"I like Rice and i like Meat, it is what i like to eat i don\'t like Moi-Moi and i don\'t like Eba, it is Rice and Meat i eat and eat.\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 08:22:32'),
(126, 5, 'Added Question', '', '{\"question\":\"A noun is a name of a person, animal place or ....?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 09:25:39'),
(127, 5, 'Added Question', '', '{\"question\":\"Find the missing alphabet\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2027\\/2028\"}', 5, '2026-06-03 10:16:41'),
(128, 5, 'Added Question', '', '{\"question\":\"What is pollution\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 12:47:16'),
(129, 5, 'Added Question', '', '{\"question\":\"Write four three(3)letter words you know...?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 20:16:45'),
(130, 5, 'Added Question', '', '{\"question\":\"Write four three(3)letter word you know...?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-03 20:21:32'),
(131, 5, 'Added Question', '', '{\"question\":\"ORANGE MAN TABLE APPLE\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-04 07:32:43'),
(132, 5, 'Added Question', '', '{\"question\":\"CAT TABLE BOX SHEEP\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-04 07:38:21'),
(133, 5, 'Added Question', '', '{\"question\":\"Phonic alphabet ee\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-04 07:42:02'),
(134, 5, 'Added Question', '', '{\"question\":\"Phonic alphabet OO\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-04 07:46:03'),
(135, 5, 'Added Question', '', '{\"question\":\"Phonic alphabet OO\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-04 07:53:01'),
(136, 5, 'Added Question', '', '{\"question\":\"OOCL__________   DOOG__________\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-04 07:56:48'),
(137, 5, 'Added Question', '', '{\"question\":\"EEWK__________.  RGEET__________\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-04 07:59:31'),
(138, 5, 'Added Question', '', '{\"question\":\"Circle the vowel sounds..?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-04 08:02:37'),
(139, 5, 'Added Question', '', '{\"question\":\"Fill in the missing letters..?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-04 08:07:39'),
(140, 5, 'Added Question', '', '{\"question\":\"...... Is a substance used to treat disease and injuries..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-04 09:53:07'),
(141, 5, 'Added Question', '', '{\"question\":\"Write your name on the blank space below..?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-04 09:53:54'),
(142, 5, 'Added Question', '', '{\"question\":\"What is in the picture\",\"question_type\":\"objective\",\"term\":\"First Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-04 20:39:41'),
(143, 5, 'Added Question', '', '{\"question\":\"Write your name\",\"question_type\":\"essay\",\"term\":\"First Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-04 20:41:12'),
(144, 5, 'Added Question', '', '{\"question\":\"Fill in the blank space\",\"question_type\":\"essay\",\"term\":\"First Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-04 20:41:57'),
(145, 5, 'Added Question', '', '{\"question\":\"How many vowel sounds do we have..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-06 11:19:30'),
(146, 5, 'Added Question', '', '{\"question\":\"How many consonant sounds do we have..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-06 11:20:36'),
(147, 5, 'Added Question', '', '{\"question\":\"Tick YES or NO\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-06 11:26:13'),
(148, 5, 'Added Question', '', '{\"question\":\"Circle the word that begins with consonant sound in the box..?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-06 11:35:40'),
(149, 5, 'Added Question', '', '{\"question\":\"Underline the word that contains the vowel sound in the box..?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-06 11:39:25'),
(150, 5, 'Added Question', '', '{\"question\":\"Circle the first word when arrange in alphabetical order..?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-06 11:43:10'),
(151, 5, 'Added Question', '', '{\"question\":\"A E I O U are called ..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-06 11:46:12'),
(152, 5, 'Added Question', '', '{\"question\":\"There are....... Consonant in the English alphabet..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-06 11:47:37'),
(153, 5, 'Added Question', '', '{\"question\":\"Vowels have ..... Letters..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-06 11:48:53'),
(154, 5, 'Added Question', '', '{\"question\":\"How many consonant are there in word temporary..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-06 11:50:50'),
(155, 5, 'Added Question', '', '{\"question\":\"Rewrite the following jumbled words..\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-06 11:54:30'),
(156, 5, 'Added Question', '', '{\"question\":\"Circle the WRONG spellings in the following:\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-06 11:58:29'),
(157, 5, 'Added Question', '', '{\"question\":\"Circle the CORRECT spellings in the following:\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-06 12:09:19'),
(158, 5, 'Added Question', '', '{\"question\":\"My mother is in the......\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-06 12:12:10'),
(159, 5, 'Added Question', '', '{\"question\":\"This is our school........\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-06 12:14:31'),
(160, 5, 'Added Question', '', '{\"question\":\"......... Smoking is dangerous to our health..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-06 12:16:58'),
(161, 5, 'Added Question', '', '{\"question\":\"What is the correct spelling\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 17:23:46'),
(162, 5, 'Added Question', '', '{\"question\":\"Choose the correct spellings below..?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 17:32:19'),
(163, 5, 'Added Question', '', '{\"question\":\"Choose the correct spellings..?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 17:37:04'),
(164, 5, 'Added Question', '', '{\"question\":\"The businessman took .......... From this bank..?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 17:41:26'),
(165, 5, 'Added Question', '', '{\"question\":\"Can we ....... to discuss the problems please..?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 17:43:03'),
(166, 5, 'Added Question', '', '{\"question\":\"Zainab ....... the way to the farm..?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 17:44:27'),
(167, 5, 'Added Question', '', '{\"question\":\"What is the code for blackboard..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 17:50:09'),
(168, 5, 'Added Question', '', '{\"question\":\"Playground is coded :\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 17:51:05'),
(169, 5, 'Added Question', '', '{\"question\":\"XI is coded for .....?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 17:52:18'),
(170, 5, 'Added Question', '', '{\"question\":\"Farming, teaching, tailoring, army ......?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 17:55:27'),
(171, 5, 'Added Question', '', '{\"question\":\"Sunday, tuesday, thursday, monday .....?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 17:56:46'),
(172, 5, 'Added Question', '', '{\"question\":\"Who was the mother of prophet Isa (A.S)..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 18:08:51'),
(173, 5, 'Added Question', '', '{\"question\":\"Who was the father of Maryam [ mother of Isa(A.S) ]..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 18:10:35'),
(174, 5, 'Added Question', '', '{\"question\":\"Maryam grew up under the custody and care of ..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 18:12:45'),
(175, 5, 'Added Question', '', '{\"question\":\"What chapter of the Quran is suratul Ma\'un..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 18:14:00'),
(176, 5, 'Added Question', '', '{\"question\":\"Were was suratul Ma\'un revealed..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 18:14:59'),
(177, 5, 'Added Question', '', '{\"question\":\"How many verses are in suratul Ma\'un..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 18:30:05'),
(178, 5, 'Added Question', '', '{\"question\":\"ASAMI means ....... in English..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 18:31:27'),
(179, 5, 'Added Question', '', '{\"question\":\"Which Arabic name of Allah means the Judge..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 18:34:29'),
(180, 5, 'Added Question', '', '{\"question\":\"Who was the father of prophet Muhammad (S.A.W)..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 18:36:02'),
(181, 5, 'Added Question', '', '{\"question\":\"Who was the mother of prophet Muhammad (S.A.W)..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 18:36:58'),
(182, 5, 'Added Question', '', '{\"question\":\"The signs of a hypocrite are.....?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 18:38:25'),
(183, 5, 'Added Question', '', '{\"question\":\"Suratul Humazah is the Quran chapter...?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 18:39:47'),
(184, 5, 'Added Question', '', '{\"question\":\"Suratul Humazah has .... Verses..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 18:41:55'),
(185, 5, 'Added Question', '', '{\"question\":\"..... Is what happens to somebody or what will happen to him future..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 18:46:07'),
(186, 5, 'Added Question', '', '{\"question\":\"To believe in destiny is one of the articles of ... In Islam..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-07 18:47:34'),
(187, 5, 'Added Question', '', '{\"question\":\"AL-HAKIM means ........ In English..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:00:02'),
(188, 5, 'Added Question', '', '{\"question\":\"Which Arabic name of ALLAH means the \\\"The Loving\\\"..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:05:32'),
(189, 5, 'Added Question', '', '{\"question\":\"Prophet Muhammad (S.A.W) was made a messenger of ALLAH at the age of .....?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:06:57'),
(190, 5, 'Added Question', '', '{\"question\":\"The first person to accept Islam in the household of prophet (S.A.W) was ...?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:09:40'),
(191, 5, 'Added Question', '', '{\"question\":\"Who was the father of prophet Muhammad (S.A.W) ..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:10:45'),
(192, 5, 'Added Question', '', '{\"question\":\"Prophet Muhammad (S.A.W) died at the age of ....?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:11:48'),
(193, 5, 'Added Question', '', '{\"question\":\"He died after spending ..... years in madinah..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:13:10'),
(194, 5, 'Added Question', '', '{\"question\":\"Prophet Muhammad (S.A.W) was survived by ....... Wives..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:14:42'),
(195, 5, 'Added Question', '', '{\"question\":\"To believe in the existence of angels is one of the articles of ........ in Islam..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:16:16'),
(196, 5, 'Added Question', '', '{\"question\":\"ALLAH (S.W.T) created the angels from ....?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:17:40'),
(197, 5, 'Added Question', '', '{\"question\":\"\\\"ASSADIQUL-AMIN\\\" means ........ In English..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:19:46'),
(198, 5, 'Added Question', '', '{\"question\":\"How many verses (ayat) are in suratul Quraysh...?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:21:24'),
(199, 5, 'Added Question', '', '{\"question\":\"Suratul Quraysh is the Qur\'an .........?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:22:32'),
(200, 5, 'Added Question', '', '{\"question\":\"The chapter of Quraysh was revealed in .....?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:25:12'),
(201, 5, 'Added Question', '', '{\"question\":\"ATTAWRAH was given to prophet ......?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:27:13'),
(202, 5, 'Added Question', '', '{\"question\":\"........ Is an Arabic word and simply means fasting...?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:31:39'),
(203, 5, 'Added Question', '', '{\"question\":\"....... Is the habit of thinking more about the needs, happiness, comfort, success of other people than about your own..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:37:32'),
(204, 5, 'Added Question', '', '{\"question\":\"AL-MUMINUN means .......?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:38:38'),
(205, 5, 'Added Question', '', '{\"question\":\"AL-ANSAR means ...?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:39:53'),
(206, 5, 'Added Question', '', '{\"question\":\"How many verses are in suratul-Tin...?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:40:59'),
(207, 5, 'Added Question', '', '{\"question\":\"Suratul-Tin was revealed in the .......?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:43:00'),
(208, 5, 'Added Question', '', '{\"question\":\"...... Can be defined as charity, alms and generous giving..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:44:08'),
(209, 5, 'Added Question', '', '{\"question\":\"The literal meaning of Zakat include the following except..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:45:40'),
(210, 5, 'Added Question', '', '{\"question\":\"The action of behaving or dressing so that you do not show your body or or attract sexual attention....?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:47:56'),
(211, 5, 'Added Question', '', '{\"question\":\"The primary objectives of dresses in islam is to ........ the body..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-08 08:49:48'),
(212, 5, 'password change', 'hidden', 'hidden', 5, '2026-06-08 11:42:09'),
(213, 5, 'Added Question', '', '{\"question\":\".... \\u0631\\u062a\\u0628\\u062a \\u062c\\u0627\\u0621 \\u0625\\u0644\\u0649 ( \\u061f ) \\u0628\\u0640 \\u0648\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-09 03:18:31'),
(214, 5, 'Added Question', '', '{\"question\":\"..... \\u0645\\u0633\\u0644\\u0633\\u0644 \\u0646\\u0627\\u0632\\u0644\\u0627\\u062a\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-09 03:19:39'),
(215, 5, 'Added Question', '', '{\"question\":\"\\u0627\\u0642\\u0631\\u0623 \\/ \\u0627\\u0642\\u0631\\u0626\\u064a \\u0633\\u0648\\u0631\\u0629 \\u0627\\u0644\\u0643\\u0627\\u0641\\u0631\\u0648\\u0646\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-09 03:23:34'),
(216, 5, 'Added Question', '', '{\"question\":\".... \\u0648\\u0631\\u0623\\u064a\\u062a \\u0627\\u0644\\u0646\\u0627\\u0633 \\u064a\\u062f\\u062e\\u0644\\u0648\\u0646 \\u0641\\u064a \\u062f\\u064a\\u0646 \\u0627\\u0644\\u0644\\u0647\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-09 03:24:38'),
(217, 5, 'Added Question', '', '{\"question\":\"\\u0625\\u0630\\u0627 \\u062c\\u0627\\u0621 \\u0646\\u0635\\u0631 \\u0627\\u0644\\u0644\\u0647 \\u0648\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-09 03:25:54'),
(218, 5, 'Added Question', '', '{\"question\":\"\\u0641\\u0633\\u0628\\u062d \\u0628\\u062d\\u0645\\u062f \\u0631\\u0628\\u0643 \\u0648\\u0627\\u0633\\u062a\\u063a\\u0641\\u0631\\u0647 \\u0625\\u0646\\u0647 \\u0643\\u0627\\u0646\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-09 03:26:47'),
(219, 5, 'Added Question', '', '{\"question\":\"........ Is a group of people that are related to each other by blood, marriage or adoption..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-09 09:09:28'),
(220, 6, 'Added Question', '', '{\"question\":\"Foods are things that people or .....eat\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-09 09:09:33'),
(221, 5, 'Added Question', '', '{\"question\":\"How many types of family do we have...?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-09 09:11:46'),
(222, 6, 'Added Question', '', '{\"question\":\"Food are eaten how many times a day\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-09 09:12:48'),
(223, 5, 'Added Question', '', '{\"question\":\"Members of a family must love one another..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-09 09:13:42'),
(224, 5, 'Added Question', '', '{\"question\":\"Providing food, clothing and shelter is one of the duties of a....?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-09 09:16:25'),
(225, 5, 'Added Question', '', '{\"question\":\"Types of family are Nuclear family and extended family..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-09 09:17:20'),
(226, 6, 'Added Question', '', '{\"question\":\"Social studies is the study of people, society, culture, government, history,and how people live  and interact with one another and their environment.\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-09 09:24:01'),
(227, 6, 'Added Question', '', '{\"question\":\"There are two types of family\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-09 09:27:01'),
(228, 6, 'Added Question', '', '{\"question\":\"List 2 types of food you know.           1.                                        2.\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-09 09:32:07'),
(229, 6, 'Added Question', '', '{\"question\":\"How many types of culture Do we have\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-09 09:36:13'),
(230, 5, 'Added Question', '', '{\"question\":\"The sun (Solar energy) gives out two forms of energy, light energy and ..... energy..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 08:46:39'),
(231, 5, 'Added Question', '', '{\"question\":\"Energy is the ability to do work..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 08:52:19'),
(232, 5, 'Added Question', '', '{\"question\":\"The two kinds of energy are, potential energy and ......... energy..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 09:02:47'),
(233, 5, 'Added Question', '', '{\"question\":\"What is energy .....?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 09:03:22'),
(234, 6, 'Added Question', '', '{\"question\":\"Good manners are polite and respectful behaviors that show consideration for other people\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-11 09:05:54'),
(235, 5, 'Added Question', '', '{\"question\":\"List two technology products that make use of electrical energy to heat energy..?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 09:06:00'),
(236, 6, 'Added Question', '', '{\"question\":\"List 2 examples of good manners.           1__________.                             2__________.\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-11 09:11:35'),
(237, 6, 'Added Question', '', '{\"question\":\"How many senses of the body do we have\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-11 09:24:00'),
(238, 6, 'Added Question', '', '{\"question\":\"All living thinks need water to......\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-11 09:29:31'),
(239, 5, 'Added Question', '', '{\"question\":\"The green color us the symbol of the country..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:18:35'),
(240, 5, 'Added Question', '', '{\"question\":\"A constitution is a set of rules that state the duties, powers, and functions of various arms of government..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:20:29'),
(241, 5, 'Added Question', '', '{\"question\":\"...... Is a means of identification for the citizens of Nigeria..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:22:11'),
(242, 5, 'Added Question', '', '{\"question\":\"The example of political leaders are President, Government and Senate..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:23:39'),
(243, 5, 'Added Question', '', '{\"question\":\"...... Is the practice of keeping oneself and the surrounding clean in other to prevent diseases..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:25:52'),
(244, 5, 'Added Question', '', '{\"question\":\"........ Is the type of toilet used mostly in the cities..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:31:22'),
(245, 5, 'Added Question', '', '{\"question\":\"Drugs laws are rules and regulations guiding the productions and use of drugs..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:33:33'),
(246, 5, 'Added Question', '', '{\"question\":\"Drug are medicine we take to treat illness when we are sick..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:35:16'),
(247, 5, 'Added Question', '', '{\"question\":\"The national drug law enforcement agency is an agency setup by the ........ ?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:36:52'),
(248, 5, 'Added Question', '', '{\"question\":\"....... is one of the social agencies that controls the use of drugs..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:38:36'),
(249, 5, 'Added Question', '', '{\"question\":\"....... are materials and equipment used at home..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:40:02'),
(250, 5, 'Added Question', '', '{\"question\":\"Bandage and plaster are materials found in the first aid box..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:41:18'),
(251, 5, 'Added Question', '', '{\"question\":\"First aid is the immediate treatment given to an accident victim before taking the person to the ......... ?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:45:25'),
(252, 5, 'Added Question', '', '{\"question\":\"The marriage conducted in an Islamic way is known as ...... ?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:47:42'),
(253, 5, 'Added Question', '', '{\"question\":\"The following is a type of medicine except ..... ?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:49:39'),
(254, 5, 'Added Question', '', '{\"question\":\"Roed accident are sudden events that happen on the ......?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:50:55'),
(255, 5, 'Added Question', '', '{\"question\":\"There are ......... types of appliances..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:51:45'),
(256, 5, 'Added Question', '', '{\"question\":\"........ is the movement of goods and services from one place to another..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:53:03'),
(257, 5, 'Added Question', '', '{\"question\":\".......... is a union between a man and a woman who have agreed to live together as husband and wife..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:54:35'),
(258, 5, 'Added Question', '', '{\"question\":\"List two types of marriage...?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:55:12'),
(259, 5, 'Added Question', '', '{\"question\":\"..... is a body of people that are united and willing to live together..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 17:56:57'),
(260, 5, 'Added Question', '', '{\"question\":\"The following are responsibilities of parents to their children except....?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:00:52'),
(261, 5, 'Added Question', '', '{\"question\":\"Communalism is a system in which members of a community comes together..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:09:07'),
(262, 5, 'Added Question', '', '{\"question\":\"The following are attributes of communalism except ......?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:10:41'),
(263, 5, 'Added Question', '', '{\"question\":\"Lical government is a body of people who controls public affairs at the grass roots..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:12:05'),
(264, 5, 'Added Question', '', '{\"question\":\"....... means leadership based on the customs and traditions of the people..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:14:27'),
(265, 5, 'Added Question', '', '{\"question\":\"Cultural diversity means difference in our ways of......?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:15:57'),
(266, 5, 'Added Question', '', '{\"question\":\"Patriotism and loyalty are examples of civic values..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:17:14'),
(267, 5, 'Added Question', '', '{\"question\":\"There are ......... Characteristics of a nation..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:18:23'),
(268, 5, 'Added Question', '', '{\"question\":\"A nation is made up of people who have similar customs and habits..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:19:39'),
(269, 5, 'Added Question', '', '{\"question\":\"List any three (3) characteristics of a nation...?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:21:41'),
(270, 5, 'Added Question', '', '{\"question\":\"What is traditional government..?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:22:17'),
(271, 5, 'Added Question', '', '{\"question\":\"Division of labour is a situation where a job is carried out by different people..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:24:17');
INSERT INTO `teacher_audit_logs` (`id`, `teacher_id`, `action`, `old_value`, `new_value`, `performed_by`, `created_at`) VALUES
(272, 5, 'Added Question', '', '{\"question\":\"Agricultural industries produces cash crops, fish and .......?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:25:37'),
(273, 5, 'Added Question', '', '{\"question\":\"Maintenance of law and order are functions of state government..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:26:41'),
(274, 5, 'Added Question', '', '{\"question\":\"The following are elements of culture except .......?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:27:44'),
(275, 5, 'Added Question', '', '{\"question\":\"Animal productions involve the rearing of .......?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:28:52'),
(276, 5, 'Added Question', '', '{\"question\":\"A bank is a place where we save our ......?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:29:49'),
(277, 5, 'Added Question', '', '{\"question\":\"....... is the act of keeping something from being damaged or wasted..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:31:48'),
(278, 5, 'Added Question', '', '{\"question\":\"Traditional means of communication involve the use of talking drums, bonfires and .........?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:33:21'),
(279, 5, 'Added Question', '', '{\"question\":\"The traditional system make use of local materials..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:34:19'),
(280, 5, 'Added Question', '', '{\"question\":\"The central bank of Nigeria started operating in July .......?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:35:22'),
(281, 5, 'Added Question', '', '{\"question\":\"List any five (5) different banks in Nigeria you know..?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:36:47'),
(282, 5, 'Added Question', '', '{\"question\":\"What is a bank..?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-11 18:37:26'),
(283, 5, 'Added Question', '', '{\"question\":\"Natural disaster are caused by ....... events..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 04:56:43'),
(284, 5, 'Added Question', '', '{\"question\":\"....... refers to the traditionof people and their concerns..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 04:58:14'),
(285, 5, 'Added Question', '', '{\"question\":\"........ is a government program which encourages young graduates of higher institution ..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 04:59:54'),
(286, 5, 'Added Question', '', '{\"question\":\"Voluntary services are organizations that render humanitarian services..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:01:32'),
(287, 5, 'Added Question', '', '{\"question\":\"........ means the administration of a nation by a group of people..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:02:54'),
(288, 5, 'Added Question', '', '{\"question\":\"Separation of power means the power of the .......... of government..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:04:17'),
(289, 5, 'Added Question', '', '{\"question\":\"There are ........... component of civic education..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:05:06'),
(290, 5, 'Added Question', '', '{\"question\":\"Civic education helps in developing good and responsive citizens ..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:06:31'),
(291, 5, 'Added Question', '', '{\"question\":\"........ occur when there is a great quantity of water lying on the ground ..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:08:21'),
(292, 5, 'Added Question', '', '{\"question\":\"Citizenship is referred to a state of being a member ..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:09:43'),
(293, 5, 'Added Question', '', '{\"question\":\"What is a leader...?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:10:50'),
(294, 5, 'Added Question', '', '{\"question\":\"List two types of disasters ...?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:11:29'),
(295, 5, 'Added Question', '', '{\"question\":\"...... refers to state of being joined together ..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:13:24'),
(296, 5, 'Added Question', '', '{\"question\":\"Organization means a group of people who come together to manage the .......?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:15:18'),
(297, 5, 'Added Question', '', '{\"question\":\"Co-operation means the working together of people for the common good of all ..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:16:54'),
(298, 5, 'Added Question', '', '{\"question\":\"Political parties are formed by people who have similar views and ....?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:18:33'),
(299, 5, 'Added Question', '', '{\"question\":\"....... are the people who co-ordinate the affairs of the party ...?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:20:27'),
(300, 5, 'Added Question', '', '{\"question\":\"Resources are materials used for further productions ..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:21:34'),
(301, 5, 'Added Question', '', '{\"question\":\"What type of rock can you see in the picture ..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:30:13'),
(302, 5, 'Added Question', '', '{\"question\":\"Examples of igneous rock are  basalt and ......?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:33:37'),
(303, 5, 'Added Question', '', '{\"question\":\"What causes the formation of igneous rocks ....?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-13 05:34:46'),
(304, 5, 'Added Question', '', '{\"question\":\"Hi testting\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-14 21:45:48'),
(305, 5, 'Added Question', '', '{\"question\":\"Draw a GSM or mobile phone ..?\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-15 02:20:18'),
(306, 5, 'Added Question', '', '{\"question\":\"Which of these is an electronic machine  tick all electronic machines ..?\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 5, '2026-06-15 02:30:44'),
(307, 6, 'Added Question', '', '{\"question\":\"Personal hygiene means keeping our body clean and healthy\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-15 09:22:02'),
(308, 6, 'Added Question', '', '{\"question\":\"Take a bathe every......\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-15 09:26:34'),
(309, 6, 'Added Question', '', '{\"question\":\"Brush our teeth morning and......\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-15 09:28:47'),
(310, 6, 'Added Question', '', '{\"question\":\".... ..... Means keeping our body clean and healthy\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-15 09:35:37'),
(311, 6, 'Added Question', '', '{\"question\":\"P h e means.......\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-15 09:38:28'),
(312, 6, 'Added Question', '', '{\"question\":\"Some parts of our body can .......\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-15 10:23:21'),
(313, 6, 'Added Question', '', '{\"question\":\"Foot ball is a .......\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-15 10:26:07'),
(314, 6, 'Added Question', '', '{\"question\":\"List three (3) part of the body you know.                                    1.                                       2.                                             3.\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-15 10:29:35'),
(315, 6, 'Added Question', '', '{\"question\":\"A market is a ......\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-15 10:38:06'),
(316, 6, 'Added Question', '', '{\"question\":\"Living things can move\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-15 10:40:05'),
(317, 6, 'Added Question', '', '{\"question\":\"How many types of living things\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-15 10:41:30'),
(318, 6, 'Added Question', '', '{\"question\":\"All living things need water to .....\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-15 10:43:33'),
(319, 6, 'Added Question', '', '{\"question\":\"We need water every day at home,in the school,in the office in the market\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-15 10:46:04'),
(320, 6, 'Added Question', '', '{\"question\":\".....is a place were we buy and sell things\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-15 10:48:30'),
(321, 6, 'Added Question', '', '{\"question\":\"We need water every day at home,in the school,in the office in the market\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-15 10:49:04'),
(322, 6, 'Added Question', '', '{\"question\":\"We have..... Senses of the body\",\"question_type\":\"objective\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-15 11:01:21'),
(323, 6, 'Added Question', '', '{\"question\":\"Write 5 bowels sound you know\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-18 09:22:00'),
(324, 6, 'Added Question', '', '{\"question\":\"Write you full name\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-18 09:23:08'),
(325, 6, 'Added Question', '', '{\"question\":\"Write three letters word\",\"question_type\":\"essay\",\"term\":\"Third Term\",\"session\":\"2025\\/2026\"}', 6, '2026-06-18 09:25:23');

-- --------------------------------------------------------

--
-- Table structure for table `teacher_overrides`
--

CREATE TABLE `teacher_overrides` (
  `id` int(11) NOT NULL,
  `teacher_id` int(11) NOT NULL,
  `override_type` enum('username','password') NOT NULL,
  `expires_at` datetime NOT NULL,
  `created_at` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `teacher_overrides`
--

INSERT INTO `teacher_overrides` (`id`, `teacher_id`, `override_type`, `expires_at`, `created_at`) VALUES
(3, 11, 'password', '2026-04-11 18:35:07', '2026-04-05 19:35:07'),
(10, 11, 'password', '2026-04-06 19:56:44', '2026-04-05 20:56:44'),
(12, 9, 'username', '2026-04-06 20:07:35', '2026-04-05 21:07:35'),
(13, 5, 'username', '2026-04-15 08:07:51', '2026-04-13 09:07:51'),
(14, 11, 'password', '2026-04-27 22:46:07', '2026-04-20 23:46:07'),
(15, 11, 'username', '2026-04-22 22:52:49', '2026-04-20 23:52:49'),
(16, 5, 'username', '2026-04-21 22:54:05', '2026-04-20 23:54:05'),
(18, 5, 'username', '2026-04-22 23:08:26', '2026-04-21 00:08:26'),
(19, 5, 'username', '2026-04-23 04:52:11', '2026-04-21 05:52:11'),
(20, 9, 'password', '2026-04-22 04:53:07', '2026-04-21 05:53:07');

-- --------------------------------------------------------

--
-- Table structure for table `terms`
--

CREATE TABLE `terms` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(20) NOT NULL COMMENT 'e.g. First Term',
  `is_active` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `terms`
--

INSERT INTO `terms` (`id`, `name`, `is_active`, `created_at`, `updated_at`) VALUES
(1, 'First Term', 0, '2026-06-14 18:33:51', '2026-06-14 18:39:06'),
(2, 'Second Term', 0, '2026-06-14 18:33:51', '2026-06-14 18:33:51'),
(3, 'Third Term', 1, '2026-06-14 18:33:51', '2026-06-14 18:39:06');

-- --------------------------------------------------------

--
-- Table structure for table `transactions`
--

CREATE TABLE `transactions` (
  `id` int(11) NOT NULL,
  `student_id` int(11) NOT NULL,
  `reference` varchar(100) DEFAULT NULL,
  `amount` decimal(10,2) DEFAULT NULL,
  `status` varchar(20) DEFAULT NULL,
  `method` varchar(50) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Indexes for dumped tables
--

--
-- Indexes for table `attendance`
--
ALTER TABLE `attendance`
  ADD PRIMARY KEY (`id`),
  ADD KEY `admission_no` (`admission_no`);

--
-- Indexes for table `classes`
--
ALTER TABLE `classes`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `class_subjects`
--
ALTER TABLE `class_subjects`
  ADD PRIMARY KEY (`id`),
  ADD KEY `class_id` (`class_id`),
  ADD KEY `subject_id` (`subject_id`);

--
-- Indexes for table `events`
--
ALTER TABLE `events`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `logins`
--
ALTER TABLE `logins`
  ADD PRIMARY KEY (`id`),
  ADD KEY `admission_no` (`admission_no`);

--
-- Indexes for table `management`
--
ALTER TABLE `management`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `messages`
--
ALTER TABLE `messages`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `news`
--
ALTER TABLE `news`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `parents`
--
ALTER TABLE `parents`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `punctuality`
--
ALTER TABLE `punctuality`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fk_punctuality_student` (`admission_number`);

--
-- Indexes for table `questions`
--
ALTER TABLE `questions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `class_id` (`class_id`),
  ADD KEY `subject_id` (`subject_id`);

--
-- Indexes for table `question_images`
--
ALTER TABLE `question_images`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `reports`
--
ALTER TABLE `reports`
  ADD PRIMARY KEY (`id`),
  ADD KEY `student_id` (`student_id`);

--
-- Indexes for table `results`
--
ALTER TABLE `results`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fk_results_students` (`admission_number`);

--
-- Indexes for table `result_serials`
--
ALTER TABLE `result_serials`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `serial_number` (`serial_number`),
  ADD KEY `student_id` (`student_id`),
  ADD KEY `fk_result_serials_admission_2025` (`admission_number`);

--
-- Indexes for table `sessions`
--
ALTER TABLE `sessions`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_session_name` (`name`);

--
-- Indexes for table `students`
--
ALTER TABLE `students`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `email` (`email`),
  ADD UNIQUE KEY `admission_number` (`admission_number`),
  ADD KEY `parent_id` (`parent_id`);

--
-- Indexes for table `student_idcards`
--
ALTER TABLE `student_idcards`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `subjects`
--
ALTER TABLE `subjects`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `super_admin_code`
--
ALTER TABLE `super_admin_code`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `secret_code` (`secret_code`);

--
-- Indexes for table `teachers`
--
ALTER TABLE `teachers`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `class` (`class`),
  ADD UNIQUE KEY `username` (`username`);

--
-- Indexes for table `teacher_audit_logs`
--
ALTER TABLE `teacher_audit_logs`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `teacher_overrides`
--
ALTER TABLE `teacher_overrides`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `terms`
--
ALTER TABLE `terms`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_term_name` (`name`);

--
-- Indexes for table `transactions`
--
ALTER TABLE `transactions`
  ADD PRIMARY KEY (`id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `attendance`
--
ALTER TABLE `attendance`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `classes`
--
ALTER TABLE `classes`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;

--
-- AUTO_INCREMENT for table `class_subjects`
--
ALTER TABLE `class_subjects`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `events`
--
ALTER TABLE `events`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `logins`
--
ALTER TABLE `logins`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `management`
--
ALTER TABLE `management`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `messages`
--
ALTER TABLE `messages`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `news`
--
ALTER TABLE `news`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `parents`
--
ALTER TABLE `parents`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `punctuality`
--
ALTER TABLE `punctuality`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=189;

--
-- AUTO_INCREMENT for table `questions`
--
ALTER TABLE `questions`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=331;

--
-- AUTO_INCREMENT for table `question_images`
--
ALTER TABLE `question_images`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `reports`
--
ALTER TABLE `reports`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `results`
--
ALTER TABLE `results`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1071;

--
-- AUTO_INCREMENT for table `result_serials`
--
ALTER TABLE `result_serials`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=81;

--
-- AUTO_INCREMENT for table `sessions`
--
ALTER TABLE `sessions`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `students`
--
ALTER TABLE `students`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=305;

--
-- AUTO_INCREMENT for table `student_idcards`
--
ALTER TABLE `student_idcards`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `subjects`
--
ALTER TABLE `subjects`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;

--
-- AUTO_INCREMENT for table `super_admin_code`
--
ALTER TABLE `super_admin_code`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `teachers`
--
ALTER TABLE `teachers`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `teacher_audit_logs`
--
ALTER TABLE `teacher_audit_logs`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=326;

--
-- AUTO_INCREMENT for table `teacher_overrides`
--
ALTER TABLE `teacher_overrides`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;

--
-- AUTO_INCREMENT for table `terms`
--
ALTER TABLE `terms`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `transactions`
--
ALTER TABLE `transactions`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- Constraints for dumped tables
--

--
-- Constraints for table `attendance`
--
ALTER TABLE `attendance`
  ADD CONSTRAINT `attendance_ibfk_1` FOREIGN KEY (`admission_no`) REFERENCES `students` (`admission_no`);

--
-- Constraints for table `class_subjects`
--
ALTER TABLE `class_subjects`
  ADD CONSTRAINT `class_subjects_ibfk_1` FOREIGN KEY (`class_id`) REFERENCES `classes` (`id`),
  ADD CONSTRAINT `class_subjects_ibfk_2` FOREIGN KEY (`subject_id`) REFERENCES `subjects` (`id`);

--
-- Constraints for table `logins`
--
ALTER TABLE `logins`
  ADD CONSTRAINT `logins_ibfk_1` FOREIGN KEY (`admission_no`) REFERENCES `students` (`admission_no`);

--
-- Constraints for table `punctuality`
--
ALTER TABLE `punctuality`
  ADD CONSTRAINT `fk_punctuality_student` FOREIGN KEY (`admission_number`) REFERENCES `students` (`admission_number`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `questions`
--
ALTER TABLE `questions`
  ADD CONSTRAINT `questions_ibfk_1` FOREIGN KEY (`class_id`) REFERENCES `classes` (`id`),
  ADD CONSTRAINT `questions_ibfk_2` FOREIGN KEY (`subject_id`) REFERENCES `subjects` (`id`);

--
-- Constraints for table `reports`
--
ALTER TABLE `reports`
  ADD CONSTRAINT `reports_ibfk_1` FOREIGN KEY (`student_id`) REFERENCES `students` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `result_serials`
--
ALTER TABLE `result_serials`
  ADD CONSTRAINT `fk_result_serials_admission` FOREIGN KEY (`admission_number`) REFERENCES `students` (`admission_number`) ON DELETE CASCADE ON UPDATE CASCADE,
  ADD CONSTRAINT `fk_result_serials_admission_2025` FOREIGN KEY (`admission_number`) REFERENCES `students` (`admission_number`) ON DELETE CASCADE ON UPDATE CASCADE;
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
