Back to Browse

SQL Interview Questions and answers Part 6 | Amazon SQL Interview Question And Answer Part-4

30.2K views
May 10, 2020
12:07

SQL Interview Questions and answers Part 6 | Amazon SQL Interview Question And Answer Part-4 | Scenario based SQL Interview Question and Answer This question is in continuation with the Part 5 video. If you not watched , I strongly recommend to watch Part 5 video before proceeding with Part 6 video. This question has been taken from Amazon's interview questions Problem Statements :- (a) Write a SQL to get the highest sold Products (Quantity*Price) on both the days (b) Write a SQL to get all product's total sales on 1st May and 2nd May adjacent to each other (c) Write a SQL to get all products day wise, that was ordered more than once ------------------------------------------------------------------------- 𝗝𝗼𝗶𝗻 𝗺𝗲 𝗼𝗻 𝗦𝗼𝗰𝗶𝗮𝗹 𝗠𝗲𝗱𝗶𝗮:🔥 ------------------------------------------------------------------------- *Instagram : https://www.instagram.com/itjunction4all/ *Twitter: https://twitter.com/sunilkr5672 ------------------------------------------------------------------------- Table and Insert SQL Script : ------------------------------------------------------------------------ CREATE TABLE [Order_Tbl]( [ORDER_DAY] date, [ORDER_ID] varchar(10) , [PRODUCT_ID] varchar(10) , [QUANTITY] int , [PRICE] int ) INSERT INTO [Order_Tbl] VALUES ('2015-05-01','ODR1', 'PROD1', 5, 5) INSERT INTO [Order_Tbl] VALUES ('2015-05-01','ODR2', 'PROD2', 2, 10) INSERT INTO [Order_Tbl] VALUES ('2015-05-01','ODR3', 'PROD3', 10, 25) INSERT INTO [Order_Tbl] VALUES ('2015-05-01','ODR4', 'PROD1', 20, 5) INSERT INTO [Order_Tbl] VALUES ('2015-05-02','ODR5', 'PROD3', 5, 25) INSERT INTO [Order_Tbl] VALUES ('2015-05-02','ODR6', 'PROD4', 6, 20) INSERT INTO [Order_Tbl] VALUES ('2015-05-02','ODR7', 'PROD1', 2, 5) INSERT INTO [Order_Tbl] VALUES ('2015-05-02','ODR8', 'PROD5', 1, 50) INSERT INTO [Order_Tbl] VALUES ('2015-05-02','ODR9', 'PROD6', 2, 50) INSERT INTO [Order_Tbl] VALUES ('2015-05-02','ODR10','PROD2', 4, 10) #AmazonDataEngineer #AmazonSQLInterview #AmazonInterview #SQLInterviewQuestionsandanswers #sqlInterviewQuestions #sqlInterviewQuestionsForTesting #sql InterviewQuestionsQuery #sqlInterviewQuestionsOnJoins #ITJunction4All #AmazonInterview

Download

1 formats

Video Formats

360pmp414.9 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

SQL Interview Questions and answers Part 6 | Amazon SQL Interview Question And Answer Part-4 | NatokHD