Students Test Scores: Algerian Public High School
History & Geography Test Scores for Students at an Algerian Public High School
@kaggle.fundal_secondary_education_students_results_2nd_hisgeo_dz
History & Geography Test Scores for Students at an Algerian Public High School
@kaggle.fundal_secondary_education_students_results_2nd_hisgeo_dz
This dataset includes scores History & Geography Test Scores for students at an Algerian public high school || First, Second & Third Trio of school year (2022/2023) & (2021/2022) || includes:
'ID': of the student.
'DateOfBirth': Date Of Birth dd-mm-yy.
'Gender': F=Female or M=Male.
'SchoolYear': (2022/2023) & (2021/2022)
'Subject': History & Geography
''EducationalYear': Second or Third
'Department': literature&philosophy or Experimental-Sciences
'Class': of the student.
'Test01': First Semester
'Exam01': First Semester
'Test02': Second Semester
'Exam02': Second Semester
'Test03': Third Semester
'Exam03': Third Semester
'Average01': = (Test01+2*(Exam01))/3
'Average02': (Test02+2*(Exam02))/3
'Average03': (Test03+2*(Exam03))/3
'TotalAverage': (Average01+Average02+Average03)/3
CREATE TABLE students_test_scores_algerian_public_high_school (
"id" BIGINT,
"dateofbirth" TIMESTAMP,
"gender" VARCHAR,
"schoolyear" VARCHAR,
"subject" VARCHAR,
"educationalyear" VARCHAR,
"department" VARCHAR,
"class" VARCHAR,
"test01" DOUBLE,
"exam01" DOUBLE,
"test02" DOUBLE,
"exam02" DOUBLE,
"test03" DOUBLE,
"exam03" DOUBLE,
"average01" DOUBLE,
"average02" DOUBLE,
"average03" DOUBLE,
"totalaverage" DOUBLE
);Anyone who has the link will be able to view this.