Back to the full dot-point answer
NSWInformation Processes and TechnologyQuick questions
Core: Information Systems and Databases
Quick questions on Relational databases and SQL queries in HSC Information Processes and Technology
5short Q&A pairs drawn directly from our worked dot-point answer. For full context and worked exam questions, read the parent dot-point page.
What is the relational model?Show answer
A relational database organises data into two-dimensional tables, also called relations. Each table describes one kind of thing, for example Students or Subjects. A row in the table is a record, representing one instance (one student). A column is a field, representing one attribute (the student's surname).
What is normalisation?Show answer
Normalisation is the process of organising fields into tables so that each piece of data is stored once. Without it, repeating a customer's address on every order wastes space and risks inconsistency when the address changes in one place but not another. Normalisation splits data into related tables linked by keys, removing this redundancy and the update anomalies it causes.
What is retrieving data with SQL?Show answer
SQL (Structured Query Language) is the standard language for querying relational databases. A basic retrieval has three clauses:
What are joining tables?Show answer
When the data you need spans two tables, a join combines them on a matching key. To list each student with the names of the subjects they take, you join Student to Subject through the Enrolments linking table, matching StudentID to StudentID and SubjectID to SubjectID. The join is the SQL expression of a relationship.
What is manipulating data?Show answer
Beyond retrieval, SQL updates the stored data. INSERT adds a new record, UPDATE changes fields in existing records (usually with a WHERE clause so it does not change every row), and DELETE removes records. These map onto the processing and storing information processes.
Have a question we have not covered?
This dot-point answer is short enough that we have not extracted many short questions yet. Read the full dot-point answer or ask Mo, our study assistant, in the chat for follow ups.