0
0
Intro to Computingfundamentals~5 mins

SQL as the query language in Intro to Computing - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does SQL stand for?
SQL stands for Structured Query Language. It is a language used to communicate with databases.
Click to reveal answer
beginner
What is the main purpose of SQL?
SQL is used to retrieve, insert, update, and delete data in a database. It helps users ask questions and get answers from data stored in tables.
Click to reveal answer
beginner
Explain the SELECT statement in SQL.
The SELECT statement is used to get data from one or more tables. For example, SELECT * FROM Students; means get all data from the Students table.
Click to reveal answer
beginner
What is a database table?
A database table is like a spreadsheet with rows and columns. Each row is a record, and each column is a field or attribute.
Click to reveal answer
beginner
How does SQL help in real life?
SQL helps businesses and apps by organizing and finding information quickly. For example, a store uses SQL to find all customers who bought a product last month.
Click to reveal answer
What SQL command is used to get data from a database?
AINSERT
BSELECT
CUPDATE
DDELETE
Which of these is NOT a basic SQL operation?
ARetrieve data
BDelete data
CUpdate data
DPaint data
In SQL, what does a table represent?
AA collection of rows and columns
BA list of commands
CA programming language
DA type of software
Which SQL command adds new data to a table?
ASELECT
BUPDATE
CINSERT
DDELETE
What does the '*' symbol mean in the query: SELECT * FROM Students;
ASelect all columns
BSelect no columns
CSelect only one column
DDelete all data
Explain in your own words what SQL is and why it is useful.
Think about how you ask questions to a database.
You got /3 concepts.
    Describe what a database table looks like and how SQL interacts with it.
    Imagine a spreadsheet and how you get or change data in it.
    You got /3 concepts.