logo

9 ODDITY Tech SQL Interview Questions (Updated 2024)

Updated on

March 3, 2024

At ODDITY Tech, SQL is typically used for analyzing customer behavioral data to find trends, which informs the companies development of beauty & wellness products. That's why ODDITY Tech often tests SQL questions during interviews for Data Science and Data Engineering positions.

As such, to help you ace the ODDITY Tech SQL interview, here’s 9 ODDITY Tech SQL interview questions – can you solve them?

9 ODDITY Tech SQL Interview Questions

SQL Question 1: Calculate The Cumulative Sum of Product Sold Per Day for Oddity Tech

Suppose you are given a table called that records all the sales transactions at ODDITY Tech. Your task is to write a PostgreSQL query that returns a new table that shows the cumulative sum of products sold each day.

The table is defined as follows:

Example Input:
sale_idproduct_idsale_datenumber_sold
10016002022-09-25
10025002022-09-23
10036002022-09-32
10045002022-09-31
10056002022-09-46

In the output, each row contains the , and the cumulative sum () of up to that date (inclusive) for that product.

For example, the entry for 2022-09-2, product 600 should have a of 5, and the entry for the same product on 2022-09-3 should have a of 7 (5 from previous day + 2 from current day).

Your output should be ordered by and then by .

Example Output:
sale_dateproduct_idcumulative_sum
2022-09-25003
2022-09-35004
2022-09-26005
2022-09-36007
2022-09-460013

Answer:

You can solve this problem using a window function. Here is the PostgreSQL query:


In this query, the window function computes a cumulative sum of for each product () over the days in ascending order. The resulting table will display for each day, for each product, the cumulative sum of the product sold up to that date.

Pro Tip: Window functions are a popular SQL interview topic, so practice all the window function problems on DataLemur

SQL Interview Questions on DataLemur

SQL Question 2: Find the Most Sold Product by ODDITY Tech

ODDITY Tech is a growing tech company that has a range of different products available. They sell their products globally and are interested in understanding which of their products are performing the best in terms of sales.

As their database specialist, your task is to provide a query which should return the product with the most units sold. Assume you are given two different tables and .

Example Input:
order_idproduct_idorder_dateunits_sold
102312306/08/202215
159456706/10/202210
201512306/18/202220
303089006/28/20225
409812307/02/202230
Example Input:
product_idproduct_name
123Armageddon Mouse
567Phantom Keyboard
890Specter Monitor

Your query should return the product Id, product name, and the total units sold.

Answer:


This query joins the and tables on the field. It then sums up the for each product using the aggregate function. The result is grouped by and to give the total for each distinct product. The results are then ordered in descending order of and the top 1 result, which represents the product with the most units sold, is returned.

SQL Question 3: What is normalization?

Database normalization is the process of breaking down a table into smaller and more specific tables and defining relationships between them via foreign keys. This minimizes redundancy, and creates a database that's more flexible, scalable, and easier to maintain. It also helps to ensure the integrity of the data by minimizing the risk of data inconsistencies and anomalies.

ODDITY Tech SQL Interview Questions

SQL Question 4: Calculate the Click-Through-Rates

ODDITY Tech is an E-commerce company that sells various types of digital products. The company places digital ads and monitors click-through-rates. Recently, they launched a new product and built a new landing page. They want to determine the effectiveness of this page. The question here is to write a SQL query that calculates the click-through-rate (CTR) -- tracked from the ads clicked to reaching the landing page, and then the conversion rate which is from reaching the landing page to actually adding the product to the cart.

Here are the two tables with fictional data that might be useful for this question:

Example Input:
click_iduser_idclick_datead_idlanding_page_id
121345208/11/2022 00:00:0050013001
243597808/12/2022 00:00:0050023002
398263508/16/2022 00:00:0050013001
510145708/19/2022 00:00:0050023002
659825208/20/2022 00:00:0050013001
Example Input:
conversion_iduser_idconversion_dateproduct_idcart_id
131045208/11/2022 00:15:0040012001
253797808/12/2022 00:20:0040022002
393263508/16/2022 05:05:0040012001
523045708/19/2022 08:00:0040022002
669125208/20/2022 10:35:0040012001

Answer:


The above SQL query first joins the two tables on the "user_id" column, with a condition of the conversion event happening after the click event. It then calculates both click count and conversion count, as well as the conversion rate (conversion count / click count * 100%).

Results may vary from time to time due to the new queries and data added. As per the given data, the query calculates the click-through rate from the clicks to the new product's landing page, and the conversion rate from the page to adding the product to the cart. The CTR and conversion rates are useful metrics for understanding the effectiveness of digital advertising and landing page design.

To solve a related SQL problem on DataLemur's free interactive coding environment, solve this Meta SQL interview question: Facebook Click-through-rate SQL Question

SQL Question 5: What does the function do, and when would you use it?

The function can take in multiple paramaters, and returns the first input paramater that is not null. If all arguments are null, the COALESCE function will return null too.

Suppose you have a table of ODDITY Tech salespeople and the number of deals they closed. If a salesperson didn't close any deals, the data from the 3rd-party CRM system exports a NULL value.

sales_personclosed_deals
Jason WrightNULL
Drew Jackson3
Chris HoNULL
Adam Cohen2
Samantha Perez4

To change these NULLs to zeros, you can use the function in the following way:


This would result in the following data:

sales_personclosed_deals
Jason Wright0
Drew Jackson3
Chris Ho0
Adam Cohen2
Samantha Perez4

SQL Question 6: Find Customers with "tech" in their Email Address

ODDITY Tech wants to conduct a marketing campaign targeting customers who belong to tech companies. In order to identify the customers to target, we need you to compile a list of all customers with the string 'tech' in their email addresses.

We standardize our email address as 'firstname.lastname@company.com'. Thus, if the 'tech' string is in the company's name, it means that customer is associated with a tech company.

We provide you with a table containing customer records for this task, structured as follows:

Example Input:
customer_idfirstnamelastnameemail_address
101JaneDoejane.doe@techstars.com
102JohnSmithjohn.smith@odditytech.com
103MaryJohnsonmary.johnson@apple.com
104JamesBrownjames.brown@microsoft.com
105PatriciaWilliamspatricia.williams@google.com

Answer:


This query uses the operator to filter out rows where the column contains the string 'tech'. The '%' character is a wildcard in SQL that matches any sequence of characters. Therefore, '%tech%' matches any that contains 'tech' anywhere within it.

It should provide an output similar to this:

Example Output:
customer_idfirstnamelastnameemail_address
101JaneDoejane.doe@techstars.com
102JohnSmithjohn.smith@odditytech.com

The list will include only customers tied to tech companies, making it easier for ODDITY Tech to conduct their focused marketing campaign.

SQL Question 7: What does the constraint do?

A UNIQUE constraint ensures that all values in a column are different. This provides uniqueness for the column(s) and helps identify each row uniquely. Unlike primary key, there can be multiple unique constraints defined per table.


SQL Question 8: Analyzing Customer and Product Interaction

As an analyst at ODDITY Tech, you are tasked with analyzing the company's database. You need to understand how customers interact with the products by joining two tables, and .

The table contains records of all customers with columns as , , , and . The table, on the other hand, stores information related to all the products that ODDITY Tech provides with columns like , , , and . You are also given an table that records which customers bought what product. The table has the following columns: , , , and .

Write a SQL query to list all customers along with the details of all products they purchased, including the product category and price.

Example Input:
customer_idfirst_namelast_nameemail
1JohnDoejohn.doe@gmail.com
2JaneSmithjane.smith@gmail.com
Example Input:
product_idproduct_nameproduct_categoryprice
101iPadElectronics699
201T-shirtApparel25
Example Input:
order_idcustomer_idproduct_idorder_date
100111012022-10-01
100222012022-10-02

Answer:


This SQL query uses the JOIN clause to combine rows from three tables based on related columns. Here the related columns are in the and tables, and in the and tables. It lists all the customers along with the details of the products they purchased, showing product category and price for each product.

Because joins come up frequently during SQL interviews, take a stab at this interactive Snapchat SQL Interview question using JOINS: Snapchat Join SQL question

SQL Question 9: Calculating Discounted Price

ODDITY Tech is planning a sale for their store, they will be discounting the price of their products based on the product category. The company provided two tables, which contains the product's original price and which contains the category and corresponding discount percentage.

The task is to come up with a query that determines the new price after discount for each product. As part of the exercise, calculate also the savings for each item i.e., the difference between the original price and the discounted price. Round the output prices to 2 decimal places.

Example Input:
item_idcategoryprice
1Electronics109.99
2Books24.99
3Fashion49.99
4Home79.99
5Electronics199.99
Example Input:
categorydiscount%
Electronics10
Books5
Fashion20
Home15
Example Output:
item_idcategoryoriginal_pricediscounted_pricesavings
1Electronics109.9998.9911.00
2Books24.9923.741.25
3Fashion49.9939.9910.00
4Home79.9967.9912.00
5Electronics199.99179.9920.00

Answer:


In the context of PostgreSQL, the above query begins by selecting the required columns from the and tables. It then calculates the discounted price by subtracting the product of item price and discount (divided by 100) from the original price. This is to establish the discounted price. The ROUND function is incorporated to render the discounted price and savings up to 2 decimal points. This query will output the item's category, original price, discounted price, and savings. An inner join is employed to merge the and table based upon a common column, 'category'.

To practice a very similar question try this interactive Amazon Highest-Grossing Items Question which is similar for product category relation or this CVS Health Pharmacy Analytics (Part 1) Question which is similar for calculating profit.

Preparing For The ODDITY Tech SQL Interview

The key to acing a ODDITY Tech SQL interview is to practice, practice, and then practice some more! Beyond just solving the earlier ODDITY Tech SQL interview questions, you should also solve the 200+ SQL coding questions which come from companies like Google, Microsoft and Silicon Valley startups. DataLemur Question Bank

Each problem on DataLemur has hints to guide you, step-by-step solutions and best of all, there is an online SQL coding environment so you can instantly run your SQL query and have it graded.

To prep for the ODDITY Tech SQL interview it is also wise to practice SQL questions from other tech companies like:

However, if your SQL coding skills are weak, don't worry about jumping right into solving questions – improve your SQL foundations with this SQL tutorial for Data Analytics.

Free SQL tutorial

This tutorial covers SQL topics like advantages of CTEs vs. subqueries and aggregate functions – both of these come up routinely in SQL interviews at ODDITY Tech.

ODDITY Tech Data Science Interview Tips

What Do ODDITY Tech Data Science Interviews Cover?

In addition to SQL interview questions, the other question categories to practice for the ODDITY Tech Data Science Interview are:

ODDITY Tech Data Scientist

How To Prepare for ODDITY Tech Data Science Interviews?

The best way to prepare for ODDITY Tech Data Science interviews is by reading Ace the Data Science Interview. The book's got:

  • 201 Interview Questions from companies like Microsoft, Google & Amazon
  • A Crash Course covering Stats, ML, & Data Case Studies
  • Amazing Reviews (900+ reviews, 4.5-star rating)

Ace the Data Science Interview by Nick Singh Kevin Huo