Describe what is meant by a primary key
A unique identifier for every record in a tbale
Write an SQL query that finds the name and presenter from all videos on the topic “the CPU”
Select Name, Presenter From Video Where Topic = The CPU
Give an advantage and a disadvantage of indexing a field
ADV: Searches in that field can be preformed more quickly
DIS: The index takes up more space in the database
Write an SQL statement that will remove all songs by an artist from the table Song
Delete From Song Where Artist = “Example”