Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Essential Tools for Data Analysis
00:00
5 left

Essential Tools for Data Analysis

EasySQL · PostgreSQL

Problem

What tools do you consider essential for data analysis?

For this SQL exercise, use the tool catalog and return only tools marked as essential. Include the tool name and category, ordered alphabetically by tool name.

Output

  1. One row per essential tool.
  2. Columns: tool_name, category.
  3. Exclude tools that are not marked essential or have no essentiality value.
  4. Order by tool_name ascending.

Schema

analysis_tools
ColumnTypeDescription
tool_idPKINTUnique identifier for the analysis tool
tool_nameVARCHAR(100)Name of the data analysis tool
categoryVARCHAR(60)Primary category of the tool
is_essentialBOOLEANWhether the tool is considered essential for data analysis
Tablesanalysis_tools
Interviewer

Your question is Essential Tools for Data Analysis. 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.