Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Primary vs Foreign Keys
00:00
5 left

Primary vs Foreign Keys

EasySQL · PostgreSQL

Problem

Explain the difference between a primary key and a foreign key in SQL.

Use the Airtel customer and subscription tables below to identify the key columns in each table and show how they relate.

Output

  1. One row per key column in the schema
  2. Columns: table_name, column_name, key_type, references_table, references_column
  3. Include both primary keys and foreign keys, ordered by table_name, then key_type, then column_name

Schema

airtel_customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer full name
cityVARCHAR(50)Customer city
airtel_subscriptions
ColumnTypeDescription
subscription_idPKINTUnique subscription identifier
customer_idINTCustomer identifier referenced from airtel_customers
plan_nameVARCHAR(50)Subscription plan name
Tablesairtel_customersairtel_subscriptions
Interviewer

Your question is Primary vs Foreign Keys. Start with the requirements and the two tables in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.