Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Single-Line SQL: Retrieve User Names
00:00
5 left

Single-Line SQL: Retrieve User Names

EasySQL · PostgreSQL

Problem

Phenom needs a simple administrative query for retrieving the names of users registered on its platform. Write a single-line PostgreSQL query that returns the name for every row in the users table.

Requirements

  1. Select only the name column.
  2. Return every user, including users who share the same name.
  3. Do not add filters, joins, aggregations, or subqueries.

Schema

users
ColumnTypeDescription
user_idPKINTEGERUnique identifier for the user
nameVARCHAR(150)User's display name
emailVARCHAR(255)User's email address
account_statusVARCHAR(20)Current account status
Tablesusers
Interviewer

Your question is Single-Line SQL: Retrieve User Names. 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.