{ "data": { "question": { "questionId": "1153", "questionFrontendId": "1068", "boundTopicId": null, "title": "Product Sales Analysis I", "titleSlug": "product-sales-analysis-i", "content": null, "translatedTitle": null, "translatedContent": null, "isPaidOnly": true, "difficulty": "Easy", "likes": 87, "dislikes": 95, "isLiked": null, "similarQuestions": "[{\"title\": \"Product Sales Analysis II\", \"titleSlug\": \"product-sales-analysis-ii\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]", "exampleTestcases": "{\"headers\":{\"Sales\":[\"sale_id\",\"product_id\",\"year\",\"quantity\",\"price\"],\"Product\":[\"product_id\",\"product_name\"]},\"rows\":{\"Sales\":[[1,100,2008,10,5000],[2,100,2009,12,5000],[7,200,2011,15,9000]],\"Product\":[[100,\"Nokia\"],[200,\"Apple\"],[300,\"Samsung\"]]}}", "categoryTitle": "Database", "contributors": [], "topicTags": [ { "name": "Database", "slug": "database", "translatedName": null, "__typename": "TopicTagNode" } ], "companyTagStats": null, "codeSnippets": null, "stats": "{\"totalAccepted\": \"48.2K\", \"totalSubmission\": \"59.5K\", \"totalAcceptedRaw\": 48207, \"totalSubmissionRaw\": 59510, \"acRate\": \"81.0%\"}", "hints": [], "solution": null, "status": null, "sampleTestCase": "{\"headers\":{\"Sales\":[\"sale_id\",\"product_id\",\"year\",\"quantity\",\"price\"],\"Product\":[\"product_id\",\"product_name\"]},\"rows\":{\"Sales\":[[1,100,2008,10,5000],[2,100,2009,12,5000],[7,200,2011,15,9000]],\"Product\":[[100,\"Nokia\"],[200,\"Apple\"],[300,\"Samsung\"]]}}", "metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Sales (sale_id int, product_id int, year int, quantity int, price int)\",\n \"Create table If Not Exists Product (product_id int, product_name varchar(10))\"\n ],\n \"mssql\": [\n \"Create table Sales (sale_id int, product_id int, year int, quantity int, price int)\",\n \"Create table Product (product_id int, product_name varchar(10))\"\n ],\n \"oraclesql\": [\n \"Create table Sales (sale_id int, product_id int, year int, quantity int, price int)\",\n \"Create table Product (product_id int, product_name varchar(10))\"\n ],\n \"database\": true\n}", "judgerAvailable": true, "judgeType": "large", "mysqlSchemas": [ "Create table If Not Exists Sales (sale_id int, product_id int, year int, quantity int, price int)", "Create table If Not Exists Product (product_id int, product_name varchar(10))", "Truncate table Sales", "insert into Sales (sale_id, product_id, year, quantity, price) values ('1', '100', '2008', '10', '5000')", "insert into Sales (sale_id, product_id, year, quantity, price) values ('2', '100', '2009', '12', '5000')", "insert into Sales (sale_id, product_id, year, quantity, price) values ('7', '200', '2011', '15', '9000')", "Truncate table Product", "insert into Product (product_id, product_name) values ('100', 'Nokia')", "insert into Product (product_id, product_name) values ('200', 'Apple')", "insert into Product (product_id, product_name) values ('300', 'Samsung')" ], "enableRunCode": true, "enableTestMode": false, "enableDebugger": false, "envInfo": "{\"mysql\": [\"MySQL\", \"
MySQL 8.0
.
mssql server 2019
.
Oracle Sql 11.2
.