Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Selection by Prefix
00:00
5 left

SQL Selection by Prefix

EasySQL · PostgreSQL

Problem

Accion Labs maintains an employee directory for internal search and reporting. Write a PostgreSQL query to find directory entries for employees whose names start with the uppercase letter G.

Requirements

  1. Return the employee name and team.
  2. Include only names beginning with uppercase G, and sort the results alphabetically by employee name.

Schema

employees
ColumnTypeDescription
employee_idPKINTEGERUnique employee identifier
employee_nameVARCHAR(100)Employee display name
teamVARCHAR(80)Accion Labs team assignment
locationVARCHAR(80)Primary work location
Tablesemployees
Interviewer

Your question is SQL Selection by Prefix. 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.