SQL in 15 days Flashcards

Udemy course.

1
Q

What is a subquery in SQL?

A

A subquery is a query nested inside another query.

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

What is the syntax for a subquery in SELECT?

A

SELECT column1, (SELECT column2 FROM table2 WHERE condition) FROM table1;

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

What is the syntax for a subquery in WHERE?

A

SELECT column1 FROM table1 WHERE column2 = (SELECT column2 FROM table2 WHERE condition);

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

What is the syntax for a subquery in FROM?

A

SELECT subquery_table.column1 FROM (SELECT column1 FROM table1) AS subquery_table;

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

What is a correlated subquery?

A

A correlated subquery is a subquery that depends on values from the outer query.

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

What is the syntax for a correlated subquery?

A

SELECT column1 FROM table1 WHERE EXISTS (SELECT 1 FROM table2 WHERE table2.column = table1.column);

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

What is the UNION operator used for?

A

UNION combines results from two SELECT statements, removing duplicates.

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

What is the difference between UNION and UNION ALL?

A

UNION removes duplicates, while UNION ALL includes all records.

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

What is the syntax for an INNER JOIN?

A

SELECT table1.column, table2.column FROM table1 INNER JOIN table2 ON table1.id = table2.id;

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

What is an OUTER JOIN?

A

An OUTER JOIN returns matching rows plus unmatched rows from one or both tables.

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

What is the difference between LEFT and RIGHT JOIN?

A

LEFT JOIN returns all records from the left table and matching records from the right. RIGHT JOIN does the opposite.

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

What is the syntax for a LEFT JOIN?

A

SELECT column1 FROM table1 LEFT JOIN table2 ON table1.id = table2.id;

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

What is the syntax for a RIGHT JOIN?

A

SELECT column1 FROM table1 RIGHT JOIN table2 ON table1.id = table2.id;

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

How do you join multiple tables?

A

Use multiple JOIN clauses: SELECT column FROM table1 INNER JOIN table2 ON condition INNER JOIN table3 ON condition;

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

How do you join with multiple conditions?

A

Use AND: SELECT column FROM table1 JOIN table2 ON table1.id = table2.id AND table1.date = table2.date;

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

What does the REPLACE function do?

A

REPLACE substitutes a string with another: SELECT REPLACE(‘text’, ‘e’, ‘a’);

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

What does CAST do in SQL?

A

CAST converts data types: SELECT CAST(column AS datatype) FROM table;

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

What does COALESCE do?

A

COALESCE returns the first non-null value: SELECT COALESCE(NULL, ‘default’);

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

What is the syntax for a CASE statement?

A

SELECT CASE WHEN condition THEN result ELSE default END FROM table;

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

How does CASE work with SUM?

A

SELECT SUM(CASE WHEN condition THEN value ELSE 0 END) FROM table;

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

What are common mathematical operators in SQL?

A

+, -, *, /, % are commonly used for arithmetic calculations.

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

What does the LENGTH function do?

A

LENGTH returns the number of characters in a string.

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

How do you convert text to lowercase?

A

Use LOWER: SELECT LOWER(‘TEXT’);

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

How do you convert text to uppercase?

A

Use UPPER: SELECT UPPER(‘text’);

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

What does the LEFT function do?

A

Returns the leftmost characters: SELECT LEFT(‘text’, 2);

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

What does the RIGHT function do?

A

Returns the rightmost characters: SELECT RIGHT(‘text’, 2);

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

How do you concatenate strings?

A

Use CONCAT: SELECT CONCAT(‘Hello’, ‘ ‘, ‘World’);

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

How do you concatenate strings using ||?

A

SELECT ‘Hello’ || ‘ ‘ || ‘World’; (PostgreSQL, Oracle)

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

What does POSITION do in SQL?

A

Finds a substring position: SELECT POSITION(‘x’ IN ‘text’);

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

What does SUBSTRING do?

A

Extracts part of a string: SELECT SUBSTRING(‘text’ FROM 2 FOR 2);

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

What does EXTRACT do?

A

Extracts parts of a date: SELECT EXTRACT(YEAR FROM date_column);

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

How do you format a date as text?

A

Use TO_CHAR: SELECT TO_CHAR(date_column, ‘YYYY-MM-DD’);

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

What are intervals in SQL?

A

Intervals represent time spans: SELECT CURRENT_DATE + INTERVAL ‘1 year’;

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

What are aggregate functions?

A

Functions that compute a value over a set of rows: SUM, COUNT, AVG, MIN, MAX.

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

How do you group data in SQL?

A

Use GROUP BY: SELECT column, COUNT(*) FROM table GROUP BY column;

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

What is the HAVING clause used for?

A

HAVING filters aggregated data: SELECT column, COUNT() FROM table GROUP BY column HAVING COUNT() > 5;

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

What is the difference between WHERE and HAVING?

A

WHERE filters before aggregation; HAVING filters after aggregation.

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

What does BETWEEN do?

A

Checks if a value is in a range: SELECT * FROM table WHERE column BETWEEN 10 AND 20;

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

What does IN do?

A

Checks if a value matches a list: SELECT * FROM table WHERE column IN (1, 2, 3);

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

What does LIKE do?

A

LIKE searches for patterns: SELECT * FROM table WHERE column LIKE ‘A%’;

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

What is an alias in SQL?

A

An alias renames a column or table: SELECT column AS alias_name FROM table;

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

How do you add comments in SQL?

A

– for single-line comments, /* */ for multi-line.

43
Q

What does LIMIT do?

A

LIMIT restricts the number of results: SELECT * FROM table LIMIT 10;

44
Q

What does DISTINCT do?

A

DISTINCT removes duplicate values: SELECT DISTINCT column FROM table;

45
Q

What is the basic structure of a SELECT statement?

A

SELECT columns FROM table WHERE condition ORDER BY column;

46
Q

How do you count rows in a table?

A

Use COUNT: SELECT COUNT(*) FROM table;

47
Q

What does ORDER BY do?

A

Sorts results: SELECT * FROM table ORDER BY column ASC/DESC;

48
Q

What is a subquery in SQL?

A

A subquery is a query nested inside another query.

49
Q

What is the syntax for a subquery in SELECT?

A

SELECT column1, (SELECT column2 FROM table2 WHERE condition) FROM table1;

50
Q

What is the syntax for a subquery in WHERE?

A

SELECT column1 FROM table1 WHERE column2 = (SELECT column2 FROM table2 WHERE condition);

51
Q

What is the syntax for a subquery in FROM?

A

SELECT subquery_table.column1 FROM (SELECT column1 FROM table1) AS subquery_table;

52
Q

What is a correlated subquery?

A

A correlated subquery is a subquery that depends on values from the outer query.

53
Q

What is the syntax for a correlated subquery?

A

SELECT column1 FROM table1 WHERE EXISTS (SELECT 1 FROM table2 WHERE table2.column = table1.column);

54
Q

What is the UNION operator used for?

A

UNION combines results from two SELECT statements, removing duplicates.

55
Q

What is the difference between UNION and UNION ALL?

A

UNION removes duplicates, while UNION ALL includes all records.

56
Q

What is the syntax for an INNER JOIN?

A

SELECT table1.column, table2.column FROM table1 INNER JOIN table2 ON table1.id = table2.id;

57
Q

What is an OUTER JOIN?

A

An OUTER JOIN returns matching rows plus unmatched rows from one or both tables.

58
Q

What is the difference between LEFT and RIGHT JOIN?

A

LEFT JOIN returns all records from the left table and matching records from the right. RIGHT JOIN does the opposite.

59
Q

What is the syntax for a LEFT JOIN?

A

SELECT column1 FROM table1 LEFT JOIN table2 ON table1.id = table2.id;

60
Q

What is the syntax for a RIGHT JOIN?

A

SELECT column1 FROM table1 RIGHT JOIN table2 ON table1.id = table2.id;

61
Q

How do you join multiple tables?

A

Use multiple JOIN clauses: SELECT column FROM table1 INNER JOIN table2 ON condition INNER JOIN table3 ON condition;

62
Q

How do you join with multiple conditions?

A

Use AND: SELECT column FROM table1 JOIN table2 ON table1.id = table2.id AND table1.date = table2.date;

63
Q

What does the REPLACE function do?

A

REPLACE substitutes a string with another: SELECT REPLACE(‘text’, ‘e’, ‘a’);

64
Q

What does CAST do in SQL?

A

CAST converts data types: SELECT CAST(column AS datatype) FROM table;

65
Q

What does COALESCE do?

A

COALESCE returns the first non-null value: SELECT COALESCE(NULL, ‘default’);

66
Q

What is the syntax for a CASE statement?

A

SELECT CASE WHEN condition THEN result ELSE default END FROM table;

67
Q

How does CASE work with SUM?

A

SELECT SUM(CASE WHEN condition THEN value ELSE 0 END) FROM table;

68
Q

What are common mathematical operators in SQL?

A

+, -, *, /, % are commonly used for arithmetic calculations.

69
Q

What does the LENGTH function do?

A

LENGTH returns the number of characters in a string.

70
Q

How do you convert text to lowercase?

A

Use LOWER: SELECT LOWER(‘TEXT’);

71
Q

How do you convert text to uppercase?

A

Use UPPER: SELECT UPPER(‘text’);

72
Q

What does the LEFT function do?

A

Returns the leftmost characters: SELECT LEFT(‘text’, 2);

73
Q

What does the RIGHT function do?

A

Returns the rightmost characters: SELECT RIGHT(‘text’, 2);

74
Q

How do you concatenate strings?

A

Use CONCAT: SELECT CONCAT(‘Hello’, ‘ ‘, ‘World’);

75
Q

How do you concatenate strings using ||?

A

SELECT ‘Hello’ || ‘ ‘ || ‘World’; (PostgreSQL, Oracle)

76
Q

What does POSITION do in SQL?

A

Finds a substring position: SELECT POSITION(‘x’ IN ‘text’);

77
Q

What does SUBSTRING do?

A

Extracts part of a string: SELECT SUBSTRING(‘text’ FROM 2 FOR 2);

78
Q

What does EXTRACT do?

A

Extracts parts of a date: SELECT EXTRACT(YEAR FROM date_column);

79
Q

How do you format a date as text?

A

Use TO_CHAR: SELECT TO_CHAR(date_column, ‘YYYY-MM-DD’);

80
Q

What are intervals in SQL?

A

Intervals represent time spans: SELECT CURRENT_DATE + INTERVAL ‘1 year’;

81
Q

What are aggregate functions?

A

Functions that compute a value over a set of rows: SUM, COUNT, AVG, MIN, MAX.

82
Q

How do you group data in SQL?

A

Use GROUP BY: SELECT column, COUNT(*) FROM table GROUP BY column;

83
Q

What is the HAVING clause used for?

A

HAVING filters aggregated data: SELECT column, COUNT() FROM table GROUP BY column HAVING COUNT() > 5;

84
Q

What is the difference between WHERE and HAVING?

A

WHERE filters before aggregation; HAVING filters after aggregation.

85
Q

What does BETWEEN do?

A

Checks if a value is in a range: SELECT * FROM table WHERE column BETWEEN 10 AND 20;

86
Q

What does IN do?

A

Checks if a value matches a list: SELECT * FROM table WHERE column IN (1, 2, 3);

87
Q

What does LIKE do?

A

LIKE searches for patterns: SELECT * FROM table WHERE column LIKE ‘A%’;

88
Q

What is an alias in SQL?

A

An alias renames a column or table: SELECT column AS alias_name FROM table;

89
Q

How do you add comments in SQL?

A

– for single-line comments, /* */ for multi-line.

90
Q

What does LIMIT do?

A

LIMIT restricts the number of results: SELECT * FROM table LIMIT 10;

91
Q

What does DISTINCT do?

A

DISTINCT removes duplicate values: SELECT DISTINCT column FROM table;

92
Q

What is the basic structure of a SELECT statement?

A

SELECT columns FROM table WHERE condition ORDER BY column;

93
Q

How do you count rows in a table?

A

Use COUNT: SELECT COUNT(*) FROM table;

94
Q

What does ORDER BY do?

A

Sorts results: SELECT * FROM table ORDER BY column ASC/DESC;

95
Q

What is a Common Table Expression (CTE)?

A

A CTE is a temporary result set defined using WITH that can be referenced within a SQL query.

96
Q

What is the syntax for a CTE?

A

WITH cte_name AS (SELECT column FROM table) SELECT * FROM cte_name;

97
Q

What are the advantages of using a CTE over a subquery?

A

CTEs improve readability, reusability, and performance in complex queries.

98
Q

When should you use a subquery instead of a CTE?

A

Use a subquery for simple queries that don’t require multiple references or recursion.

99
Q

Can CTEs be recursive?

A

Yes, recursive CTEs allow hierarchical data retrieval.

100
Q

What is the syntax for a recursive CTE?

A

WITH RECURSIVE cte_name AS (SELECT … UNION ALL SELECT …) SELECT * FROM cte_name;

101
Q

What are the limitations of CTEs?

A

CTEs may have performance overhead compared to indexed views or temp tables.

102
Q

How does a subquery differ from a CTE?

A

A subquery is nested inside another query, whereas a CTE is defined separately and can be referenced multiple times.

103
Q

When is a subquery more efficient than a CTE?

A

Subqueries can be optimized in simple cases where defining a temporary structure is unnecessary.

104
Q

What are some use cases for CTEs?

A

CTEs are useful for recursive queries, simplifying complex joins, and breaking down long queries.