Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Integration Methods You’ve Used
00:00
5 left

Integration Methods You’ve Used

HardSQL · PostgreSQL

Problem

What types of integration methods have you worked with, and when did you choose each one?

Use the supplied integration method catalog and experience records to produce a concise SQL summary of documented choices. Include active methods even when no experience has been recorded.

Output

  1. One row per active integration method.
  2. Return method_name, usage_count, latest_decision_date, and selection_contexts.
  3. Show contexts alphabetically within each method, use NULL where no experience exists, and order methods alphabetically.

Schema

integration_methods
ColumnTypeDescription
method_idPKINTUnique integration method identifier
method_nameVARCHAR(100)Integration method name
descriptionVARCHAR(255)Short description of the method
is_activeBOOLEANWhether the method should appear in the active catalog
integration_experiences
ColumnTypeDescription
experience_idPKINTUnique experience record identifier
method_idINTReferenced integration method
chosen_whenVARCHAR(255)Context in which the method was selected
decision_dateDATEDate the integration decision was recorded
system_nameVARCHAR(100)System involved in the experience
Tablesintegration_methodsintegration_experiences
Interviewer

Your question is Integration Methods You’ve Used. 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.