Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Query by Email
00:00
5 left

SQL Query by Email

EasySQL · PostgreSQL

Problem

Given an SQL table with names, salaries, and emails, write an SQL query that returns the row for a particular email.

Use the employee_profiles table and search for maya.chen@gemini.example.

Output

  1. Return one row for the matching employee.
  2. Include employee_id, name, salary, and email in that order.

Schema

employee_profiles
ColumnTypeDescription
employee_idPKINTEGERUnique employee identifier
nameVARCHAR(100)Employee's full name
salaryNUMERIC(12,2)Annual salary
emailVARCHAR(255)Employee email address
Tablesemployee_profiles
Interviewer

Your question is SQL Query by Email. Start with the requirements and the one table 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.