Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Date Format Conversion in SQL
00:00
5 left

Date Format Conversion in SQL

EasySQL · PostgreSQL

Problem

Mphasis reporting teams need service dates displayed consistently in client-facing operational reports. The source values are stored as PostgreSQL DATE values, which normally display as YYYY-MM-DD.

Write a SQL query against the service_requests table that converts each request_date to the MM/DD/YYYY format using PostgreSQL's built-in TO_CHAR function.

Requirements

  1. Return the request identifier and the formatted date.
  2. Preserve rows where request_date is NULL, returning NULL for the formatted value, and order the results by request_id.

Schema

service_requests
ColumnTypeDescription
request_idPKINTEGERUnique service request identifier
request_dateDATEDate when the request was received
service_typeVARCHAR(40)Type of Mphasis service requested
Tablesservice_requests
Interviewer

Your question is Date Format Conversion in SQL. 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.