SQL Data Manipulation Flashcards

1
Q

What is SQL?

A

SQL or Structured Query Language is a language that has emerged from the development of the relational model

SQL has become the standard relational database language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the primary objectives of SQL?

A
  • Create the database and relation structures
  • Perform basic data management tasks
  • Perform simple and complex queries
  • Minimize user effort and ensure ease of learning
  • Be portable across different DBMS
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Who defined the Structured English Query Language (SEQUEL)?

A

Donald Chamberlin at IBM San Jose Laboratory in 1974

SEQUEL was later renamed to SQL for legal reasons

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

When was the first SQL standard published?

A

In 1987 by ANSI and ISO

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the two major components of SQL?

A
  • Data Definition Language (DDL)
  • Data Manipulation Language (DML)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does Data Definition Language (DDL) allow?

A

Allows definition of database structure, specification of data types and constraints, and controlling access to the data

Examples include CREATE table, ALTER table, DROP table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the purpose of Data Manipulation Language (DML)?

A

Allows retrieving (querying) and updating of data

Examples include SELECT, INSERT, UPDATE, DELETE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How is SQL described in terms of procedural structure?

A

It is non-procedural; you specify what information you require, rather than how to get it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the syntax for creating a table in SQL?

A

CREATE TABLE DatabaseName.NewTableName (ColumnName1 DataType OptionalConstraint, …)

Optional table constraints can also be included

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are the main data types available in SQL?

A
  • Exact numeric: INT, SMALLINT, BIGINT, DECIMAL
  • Approximate numeric: DOUBLE, FLOAT, REAL
  • Date/Time: DATETIME, DATE, TIME, TIMESTAMP
  • Character/String: CHAR, VARCHAR
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is an integrity constraint in SQL?

A

Rules that ensure the accuracy and consistency of data within a database

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What does the NOT NULL constraint enforce?

A

Specifies that a column must contain a value

This is used for columns that cannot have null values

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the purpose of the PRIMARY KEY constraint?

A

Ensures that each value in the column is unique and not null

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does the FOREIGN KEY constraint do?

A

Links a column to the primary key of another table, ensuring referential integrity

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the syntax for altering a table to add a new column?

A

ALTER TABLE TableName ADD ColumnName DataType

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What SQL command is used to remove a table?

A

DROP TABLE TableName

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What is the general syntax of a SELECT statement?

A

SELECT [DISTINCT | ALL] {* | [columnExpression [AS newName]] [,…]} FROM TableName [alias] [, …] [WHERE condition] [GROUP BY columnList] [HAVING condition] [ORDER BY columnList]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What is the purpose of the WHERE clause in a SELECT statement?

A

Filters rows subject to some condition

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What does the ORDER BY clause do in a SQL query?

A

Specifies the order of the output

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

What is the purpose of the DISTINCT keyword in SQL?

A

Eliminates duplicate rows from the result set

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

What is a calculated field in SQL?

A

A field that is derived from other fields in the data set, often using arithmetic operations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

Fill in the blank: The command to modify an existing column in a table is ______.

A

ALTER TABLE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

True or False: SQL commands are case sensitive.

A

False

Most components of an SQL statement are case insensitive except for literal character data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

What SQL command is used to eliminate duplicates in a query result?

A

DISTINCT

DISTINCT is applied in the SELECT statement to return only unique values.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

How do you produce a list of monthly salaries for all staff?

A

SELECT StaffNo, Forename, Surname, Salary/12 FROM STAFF;

This query divides the annual salary by 12 to calculate the monthly salary.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

What clause is used to rename a column in SQL?

A

AS clause

The AS clause allows you to give a column a temporary name in the result set.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

What SQL command lists all staff with a salary greater than 25,000?

A

SELECT StaffNo, Forename, Surname, ‘Position’, Salary FROM STAFF WHERE Salary > 25000;

This query filters results using the WHERE clause to find staff earning above a specified amount.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

Which SQL clause is used to find records with a salary not equal to 40,000?

A

WHERE Salary <> 40000

The <> operator is used to specify ‘not equal to’ in SQL.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

How do you list addresses of all branch offices in London or Glasgow?

A

SELECT * FROM BRANCH WHERE City = ‘London’ OR City = ‘Glasgow’;

This query retrieves all columns from the BRANCH table where the city matches either London or Glasgow.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

What SQL command lists all staff with a salary between 20,000 and 30,000?

A

SELECT StaffNo, Forename, Surname, ‘Position’, Salary FROM STAFF WHERE Salary >= 20000 AND Salary <= 30000;

This query uses compound conditions in the WHERE clause to filter results within a specific range.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q

What SQL command lists all managers and assistants?

A

SELECT StaffNo, Forename, Surname, ‘Position’ FROM STAFF WHERE Position IN (‘Manager’, ‘Assistant’);

The IN operator checks if the Position is either Manager or Assistant.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

How can the IN operator be expressed without using it?

A

WHERE Position = ‘Manager’ OR Position = ‘Assistant’;

This alternative method uses multiple OR conditions instead of the IN operator.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
33
Q

What SQL command finds all owners with ‘Glasgow’ in their address?

A

SELECT OwnerNo, Forename, Surname, Address, TelNo FROM OWNER WHERE Address LIKE ‘%Glasgow%’;

The LIKE operator is used for pattern matching in SQL.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
34
Q

What do the SQL special pattern matching symbols ‘%’ and ‘_’ represent?

A

% represents a sequence of zero, one or more characters; _ represents a single character.

These symbols are used in conjunction with the LIKE operator for flexible pattern matching.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
35
Q

What SQL command lists details of all viewings on property PG4 without a supplied comment?

A

SELECT RenterNo, Date FROM VIEWING WHERE PropertyNo = ‘PG4’ AND Comment IS NULL;

This query uses IS NULL to check for records where a comment is not provided.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
36
Q

What is the negated version of IS NULL in SQL?

A

IS NOT NULL

This operator checks for records that do have a value in the specified column.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
37
Q

What is the purpose of SQL?

A

To manage and manipulate relational databases.

SQL stands for Structured Query Language and is essential for database operations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
38
Q

What are the major components of SQL?

A
  • Data Query Language (DQL)
  • Data Definition Language (DDL)
  • Data Manipulation Language (DML)
  • Data Control Language (DCL)

Each component serves a specific purpose in database management.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
39
Q

What is the function of the SELECT statement in SQL?

A

To retrieve data from a database.

SELECT is one of the most commonly used commands in SQL to fetch records.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
40
Q

What SQL command is used to sort query results?

A

ORDER BY

ORDER BY sorts the result set based on one or more columns.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
41
Q

What SQL command is used to retrieve data from a database?

A

SELECT

SELECT is the primary command for querying data from a database.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
42
Q

What are the five aggregate functions defined by the SQL ISO standard?

A
  • COUNT
  • SUM
  • AVG
  • MIN
  • MAX

These functions perform calculations on data and return a single value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
43
Q

What is the purpose of the GROUP BY clause in SQL?

A

To group rows that have the same values in specified columns into summary rows

GROUP BY is often used with aggregate functions to produce summary statistics.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
44
Q

How do you specify a descending order in an ORDER BY clause?

A

ORDER BY column_name DESC

DESC keyword indicates that the results should be sorted in descending order.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
45
Q

What does the HAVING clause do in SQL?

A

Filters groups based on aggregate function results

HAVING is used after GROUP BY to apply conditions to the grouped results.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
46
Q

What is a sub-query?

A

A query nested inside another SQL query

Sub-queries can be used in SELECT, INSERT, UPDATE, and DELETE statements.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
47
Q

What SQL command is used to update data in a database?

A

UPDATE

UPDATE modifies existing records in a table.

48
Q

What is the difference between WHERE and HAVING clauses?

A

WHERE filters rows before grouping; HAVING filters groups after aggregation

This distinction is crucial for correct SQL query results.

49
Q

Fill in the blank: The SQL command used to delete records from a database is _______.

A

DELETE

DELETE is used to remove existing records from a table.

50
Q

True or False: The ORDER BY clause can only sort by a single column.

A

False

ORDER BY can sort by multiple columns by separating them with commas.

51
Q

What is the purpose of the SUM function in SQL?

A

Returns the sum of values in a specified column

SUM is often used in conjunction with GROUP BY.

52
Q

What does the COUNT(*) function do?

A

Counts all rows in a table, including nulls

COUNT(*) returns the total number of rows, regardless of nulls or duplicates.

53
Q

How do you perform a JOIN in SQL?

A

Include more than one table in the FROM clause and specify the JOIN condition

JOINs allow combining rows from two or more tables based on related columns.

54
Q

Fill in the blank: The SQL command to create tables and set constraints is part of _______.

A

SQL DDL

DDL stands for Data Definition Language.

55
Q

What is the purpose of the IN keyword in SQL?

A

Specifies multiple possible values for a column in a WHERE clause

IN is used to filter records that match any value in a list.

56
Q

What does the EXISTS keyword do in SQL?

A

Checks for the existence of rows in a subquery

EXISTS returns true if the subquery returns one or more rows.

57
Q

What is the function of the ANY keyword in SQL?

A

Returns true if any value in a subquery matches the condition

ANY is often used with comparison operators.

58
Q

What is the purpose of the AVG function in SQL?

A

Returns the average of values in a specified column

AVG is used to calculate the mean of a numeric column.

59
Q

How do you use the JOIN clause to include an alias for a table?

A

Use the table name followed by the alias separated by a space

Aliases simplify referencing tables in complex queries.

60
Q

Fill in the blank: The SQL command used to combine the result sets of two or more SELECT statements is called _______.

A

UNION

UNION combines results from multiple SELECT statements into a single result set.

61
Q

What does the MIN function do in SQL?

A

Returns the smallest value in a specified column

MIN can be used with numeric and date fields.

62
Q

What SQL statement is used to add new rows of data to a table?

63
Q

What SQL statement is used to modify existing data in a table?

64
Q

What SQL statement is used to remove rows of data from a table?

65
Q

What does the ANY operator do in SQL?

A

The condition is true if it is satisfied by any one or more values produced by the subquery.

66
Q

What is the difference between ANY and SOME in SQL?

A

There is no difference; SOME can be used instead of ANY.

67
Q

What does the ALL operator do in SQL?

A

The condition is only true if it is satisfied by all values produced by the subquery.

68
Q

What is a non-correlated subquery?

A

A subquery that does not depend on data from the outer query and executes once for the entire outer query.

69
Q

What is a correlated subquery?

A

A subquery that makes use of data from the outer query and executes once for each row of the outer query.

70
Q

What do EXISTS and NOT EXISTS check in SQL?

A

They check for the existence or non-existence of rows in the subquery result table.

71
Q

What is the result of EXISTS if the subquery returns a non-empty set?

72
Q

What is the result of NOT EXISTS if the subquery returns an empty result table?

73
Q

What is union compatibility in SQL?

A

Two SELECT queries can be combined only if they have the same number of columns and the datatype of each column matches.

74
Q

What does the UNION operation do?

A

It produces a table containing all rows in either of the two tables or both.

75
Q

What does the INTERSECT operation do?

A

It produces a table containing all rows common to both tables.

76
Q

What does the DIFFERENCE (EXCEPT) operation do?

A

It produces a table containing all rows in one table but not in the other.

77
Q

How can you insert multiple records into a table using a SELECT statement?

A

INSERT INTO TableName SELECT …

78
Q

What is the syntax for updating records in a table?

A

UPDATE TableName SET columnName1 = dataValue1 [, columnName2 = dataValue2…] [WHERE searchCondition]

79
Q

What happens if the WHERE clause is omitted in an UPDATE statement?

A

The named columns are updated for all rows in the table.

80
Q

What must be compatible when inserting data into a table?

A

The data type of each item in dataValueList must be compatible with the corresponding column.

81
Q

Fill in the blank: The SQL statement to remove data from a table is _______.

82
Q

What is the result of the query: SELECT * FROM STAFF WHERE Salary > ALL (SELECT Salary FROM STAFF WHERE BranchNo = ‘B3’);

A

It finds staff whose salary is larger than the salary of every member of staff at branch B3.

83
Q

True or False: The INTERSECT operator is supported in most RDBMSs but is not supported in MS Access.

84
Q

How do you insert a new row into the STAFF table supplying data for all columns?

A

INSERT INTO STAFF VALUES(‘SG16’, ‘John’, ‘Smith’, ‘Strand Road, Derry’, ‘028 1234 5678’, ‘Manager’, ‘M’, ‘1977-05-25’, 18300, ‘PX123456Z’, ‘B3’);

85
Q

What must be true for a column to allow NULL values when inserting records?

A

The column must have been declared as NULL when the table was created.

86
Q

What SQL command would you use to give all staff a 5% pay increase?

A

UPDATE STAFF SET Salary = Salary*1.05;

87
Q

What is the purpose of the GROUP BY clause in SQL?

A

It groups rows that have the same values in specified columns into summary rows.

88
Q

Fill in the blank: To insert a new record by using the names of attributes, the syntax is INSERT INTO StaffName (column1, column2) VALUES (value1, value2).

89
Q

What SQL command is used to update the salary of all staff members?

A

UPDATE STAFF SET Salary = Salary*1.05;

This command increases the salary of all staff by 5%

90
Q

What command is used to give all Managers a 10% pay increase?

A

UPDATE STAFF SET Salary = Salary*1.1 WHERE ‘Position’ = ‘Manager’;

This command specifically targets staff in the Manager position

91
Q

How do you promote David Ford to Manager and set his salary to £35,000?

A

UPDATE STAFF SET ‘Position’ = ‘Manager’, Salary = 35000 WHERE Forename = ‘David’ AND Surname = ‘Ford’;

This command updates the position and salary for the specified individual

92
Q

What SQL command is used to delete records from a table?

A

DELETE FROM TableName [WHERE searchCondition]

‘TableName’ refers to the name of the table or view, and ‘searchCondition’ is optional

93
Q

What happens if the searchCondition is omitted in a DELETE command?

A

All rows are deleted from the table

This is different from dropping the table itself

94
Q

What is the command to delete all viewings related to property PG4?

A

DELETE FROM VIEWING WHERE PropertyNo = ‘PG4’;

This command deletes specific rows based on the condition

95
Q

What command would you use to delete all records from the Viewing table?

A

DELETE FROM VIEWING;

This deletes all records but does not remove the table itself

96
Q

True or False: The DELETE command can be used to remove an entire table from the database.

A

False

To remove an entire table, the DROP TABLE command is used

97
Q

What is the purpose of the SQL command DELETE?

A

To allow rows to be deleted from an existing table

This command can target specific rows or all rows based on conditions

98
Q

Fill in the blank: The command to update a Manager’s salary is __________.

A

UPDATE STAFF SET Salary = Salary*1.1 WHERE ‘Position’ = ‘Manager’

This command specifically targets Managers for a salary increase

99
Q

What is SQL?

A

Structured QUERY LANGUAGE

100
Q

What is the purpose of the JOIN operator?

A

To retrieve data from two or more tables based on a relationship between certain columns

101
Q

What is a Cartesian product?

A

A table consisting of all possible pairs of rows from two tables

102
Q

How is a Cartesian product produced?

A

When two tables are joined without using the WHERE clause

103
Q

Define INNER JOIN

A

Combines rows from two tables only if values in the joined columns match

104
Q

What happens if there is no matching field in an INNER JOIN?

A

Neither row appears in the query results

105
Q

What is an OUTER JOIN?

A

Includes rows even if they do not have matching columns in the joined table

106
Q

List the types of OUTER JOINS

A
  • LEFT OUTER JOIN
  • RIGHT OUTER JOIN
  • FULL OUTER JOIN
107
Q

What is the result of a LEFT OUTER JOIN?

A

All rows from the leftmost table are included even if there are no matches in the right table

108
Q

What is the effect of a RIGHT OUTER JOIN?

A

All rows from the rightmost table are included even if there are no matches in the left table

109
Q

What does a FULL OUTER JOIN do?

A

Combines the effect of both left and right outer joins

110
Q

What is the SQL syntax for an INNER JOIN?

A

SELECT BRANCH_2., PROPERTY_FOR_RENT_2. FROM BRANCH_2 INNER JOIN PROPERTY_FOR_RENT_2 ON BRANCH_2.City = PROPERTY_FOR_RENT_2.City

111
Q

Fill in the blank: A LEFT OUTER JOIN includes all rows from the ______ table.

112
Q

True or False: The FULL OUTER JOIN is implemented in MariaDB.

113
Q

What is the SQL syntax for a LEFT OUTER JOIN?

A

SELECT BRANCH_2., PROPERTY_FOR_RENT_2. FROM BRANCH_2 LEFT OUTER JOIN PROPERTY_FOR_RENT_2 ON BRANCH_2.City = PROPERTY_FOR_RENT_2.City

114
Q

What is the main purpose of using table aliases in SQL?

A

To replace long or complex table names and distinguish between attributes with the same name

115
Q

What do NULL values in a result set from an OUTER JOIN indicate?

A

That there was no matching row in the other table

116
Q

What is the SQL syntax for a FULL OUTER JOIN using UNION?

A

SELECT b., p. FROM Branch_2 AS b LEFT JOIN Property_For_Rent_2 AS p ON b.City = p.City UNION SELECT b., p. FROM Branch_2 AS b RIGHT JOIN Property_For_Rent_2 AS p ON b.City = p.City