Topic 6 Modifying Table Dat Flashcards

1
Q

Joins allow the
retrieval of related
data spread across
multiple tables in a
relational database.

A
  1. Combine Data
    from Multiple
    Tables
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Joins leverage primary
and foreign key
relationships to link
rows in one table to
corresponding rows in
another.

A
  1. Establish
    Relationships Between
    Tables
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

By retrieving only the
required data from
multiple tables, JOIN
operations reduce
redundancy and improve
query performance.

A
  1. Optimize Query
    Efficiency
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Joins enable complex
queries that
consolidate
information for
reporting and analytics.

A
  1. Support Advanced
    Data Analysis
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Different types of JOINs
(INNER, LEFT, RIGHT,
FULL OUTER, CROSS)
provide flexibility in
fetching data depending
on the analysis needs.

A
  1. Allow Versatile Data
    Retrieval
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

By linking related
tables, JOINs help
maintain normalized
database structures
without duplicating
data.

A
  1. Enhance Data
    Integrity
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

JOINs mimic real-world
connections between
entities, making it
easier to model and
query practical
relationships.

A
  1. Facilitate Real-World
    Scenarios
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

is used to
combine rows from two or
more tables, based on a
related column between
them.

A

JOIN clause

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

SYNTAX OF
JOIN

A

SELECT Orders.OrderID,
Customers.CustomerName, Orders.OrderDate
FROM Orders
INNER JOIN Customers ON Orders.CustomerID=Cus
tomers.CustomerID;

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

Returns records that
have matching values in both tables

A

INNER JOIN

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

Returns all records from
the left table, and the matched
records from the right table

A

LEFT JOIN:

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

Returns all records from
the right table, and the matched
records from the left table

A

RIGHT JOIN

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

Returns all records
from both tables

A

CROSS JOIN

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

SUPPORTED
TYPES OF
JOINS IN
MYSQL

A

Inner, left, right and cross join

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

does not require each record in the two joined tables to have a
matching record

A

OuterJoin

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

OUTER JOIN is subdivided into

A

Left Join
Right Join
Full Join

17
Q

-returns all rows from the left table (or the first table), even if there are no
matches in the right table

18
Q

-returns all the rows from the right table (or the second table), even if there are
no matches in the left table

A

Right Join

19
Q
  • both tables are secondary (or optional), such that if rows are being matched in
    table A and table B, then all rows from table A are displayed even if there is no matching
    row in table B, and vice versa
20
Q

are SELECT statements that
have been saved in the
database

21
Q

Keywords related to
Views:

A
  • CREATE VIEW
  • ALTER VIEW
  • DROP VIEW
22
Q

is a keyword that enables users to create new views

A

CREATE VIEW

23
Q

syntax of creating views

A

CREATE VIEW ViewName AS SELECT statement

24
Q

is the keyword used to
modify a created view

A

ALTER VIEW

25
Q

Syntax of Altering view

A

ALTER VIEW ViewName AS
SELECT statement

26
Q

is used to delete a view that was previously created

27
Q

syntax of drop view

A

DROP VIEW ViewName