{ "data": { "question": { "questionId": "1173", "questionFrontendId": "1083", "boundTopicId": null, "title": "Sales Analysis II", "titleSlug": "sales-analysis-ii", "content": null, "translatedTitle": null, "translatedContent": null, "isPaidOnly": true, "difficulty": "Easy", "likes": 179, "dislikes": 36, "isLiked": null, "similarQuestions": "[{\"title\": \"Sales Analysis I\", \"titleSlug\": \"sales-analysis-i\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Sales Analysis III\", \"titleSlug\": \"sales-analysis-iii\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]", "exampleTestcases": "{\"headers\":{\"Product\":[\"product_id\",\"product_name\",\"unit_price\"],\"Sales\":[\"seller_id\",\"product_id\",\"buyer_id\",\"sale_date\",\"quantity\",\"price\"]},\"rows\":{\"Product\":[[1,\"S8\",1000],[2,\"G4\",800],[3,\"iPhone\",1400]],\"Sales\":[[1,1,1,\"2019-01-21\",2,2000],[1,2,2,\"2019-02-17\",1,800],[2,1,3,\"2019-06-02\",1,800],[3,3,3,\"2019-05-13\",2,2800]]}}", "categoryTitle": "Database", "contributors": [], "topicTags": [ { "name": "Database", "slug": "database", "translatedName": null, "__typename": "TopicTagNode" } ], "companyTagStats": null, "codeSnippets": null, "stats": "{\"totalAccepted\": \"39.6K\", \"totalSubmission\": \"78.6K\", \"totalAcceptedRaw\": 39647, \"totalSubmissionRaw\": 78572, \"acRate\": \"50.5%\"}", "hints": [], "solution": null, "status": null, "sampleTestCase": "{\"headers\":{\"Product\":[\"product_id\",\"product_name\",\"unit_price\"],\"Sales\":[\"seller_id\",\"product_id\",\"buyer_id\",\"sale_date\",\"quantity\",\"price\"]},\"rows\":{\"Product\":[[1,\"S8\",1000],[2,\"G4\",800],[3,\"iPhone\",1400]],\"Sales\":[[1,1,1,\"2019-01-21\",2,2000],[1,2,2,\"2019-02-17\",1,800],[2,1,3,\"2019-06-02\",1,800],[3,3,3,\"2019-05-13\",2,2800]]}}", "metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Product (product_id int, product_name varchar(10), unit_price int)\",\n \"Create table If Not Exists Sales (seller_id int, product_id int, buyer_id int, sale_date date, quantity int, price int)\"\n ],\n \"mssql\": [\n \"Create table Product (product_id int, product_name varchar(10), unit_price int)\",\n \"Create table Sales (seller_id int, product_id int, buyer_id int, sale_date date, quantity int, price int)\"\n ],\n \"oraclesql\": [\n \"Create table Product (product_id int, product_name varchar(10), unit_price int)\",\n \"Create table Sales (seller_id int, product_id int, buyer_id int, sale_date date, quantity int, price int)\",\n \"ALTER SESSION SET nls_date_format='YYYY-MM-DD'\"\n ],\n \"database\": true\n}", "judgerAvailable": true, "judgeType": "large", "mysqlSchemas": [ "Create table If Not Exists Product (product_id int, product_name varchar(10), unit_price int)", "Create table If Not Exists Sales (seller_id int, product_id int, buyer_id int, sale_date date, quantity int, price int)", "Truncate table Product", "insert into Product (product_id, product_name, unit_price) values ('1', 'S8', '1000')", "insert into Product (product_id, product_name, unit_price) values ('2', 'G4', '800')", "insert into Product (product_id, product_name, unit_price) values ('3', 'iPhone', '1400')", "Truncate table Sales", "insert into Sales (seller_id, product_id, buyer_id, sale_date, quantity, price) values ('1', '1', '1', '2019-01-21', '2', '2000')", "insert into Sales (seller_id, product_id, buyer_id, sale_date, quantity, price) values ('1', '2', '2', '2019-02-17', '1', '800')", "insert into Sales (seller_id, product_id, buyer_id, sale_date, quantity, price) values ('2', '1', '3', '2019-06-02', '1', '800')", "insert into Sales (seller_id, product_id, buyer_id, sale_date, quantity, price) values ('3', '3', '3', '2019-05-13', '2', '2800')" ], "enableRunCode": true, "enableTestMode": false, "enableDebugger": false, "envInfo": "{\"mysql\": [\"MySQL\", \"
MySQL 8.0
.
mssql server 2019
.
Oracle Sql 11.2
.