Database Intro_Yr11

1234567891011121314151617
Across
  1. 2. A single entry in a table. Each record contains values for all fields. Example: A student’s full details in the “Students” table.
  2. 4. An organized collection of data that can be easily accessed, managed, and updated.
  3. 6. A single category of data stored in a table. Example: Name, Age, or Student_ID.
  4. 9. A field in one table that links to the primary key in another table, creating a relationship.
  5. 11. A type of database that stores data in tables (rows and columns) and links them using relationships.
  6. 13. The connection between two or more tables in a database (e.g., students and courses).
  7. 16. Ensuring accuracy, consistency, and reliability of data in a database.
  8. 17. Rules applied to data in a database to ensure accuracy (e.g., NOT NULL, UNIQUE).
Down
  1. 1. A diagram used to show entities, their attributes, and relationships between them.
  2. 3. An object or concept about which data is stored (e.g., Student, Teacher, Course).
  3. 5. A structure in a database that holds data in rows and columns (like a spreadsheet).
  4. 7. Unnecessary duplication of data in a database (something normalization helps avoid).
  5. 8. The process of organizing data in tables to reduce duplication and improve efficiency.
  6. 10. A language used to communicate with and manage relational databases.
  7. 12. A request for specific data from a database, often written in SQL.
  8. 14. A unique field (or combination of fields) that identifies each record in a table. Example: Student_ID in a “Students” table.
  9. 15. A property or characteristic of an entity. Example: For entity “Student,” attributes could be Name, Age, Grade.