Dataset Viewer
Auto-converted to Parquet Duplicate
Question
stringlengths
8
118
Answer
stringlengths
6
228
Show all deals where the stage is 'Value Proposition' and the amount is greater than 5563.
SELECT * FROM deals WHERE Stage = 'Value Proposition' AND Amount > 5563 AND Closing_Date = '12/12/2025'
Show all deals where the stage is 'Proposal/Price Quote' and the amount is greater than 13511.
SELECT Stage, AVG(Amount) FROM deals GROUP BY Stage HAVING AVG(Amount) > 13511
Show all deals where the stage is 'Qualification' and the amount is greater than 37812.
SELECT deals.Deal_Name, accounts.Account_Name FROM deals JOIN accounts ON deals.Account_Name = accounts.Account_Name WHERE deals.Stage = 'Qualification'
Show all deals where the stage is 'Qualification' and the amount is greater than 22170.
SELECT Stage, AVG(Amount) FROM deals GROUP BY Stage HAVING AVG(Amount) > 22170
Show all deals where the stage is 'Closed Lost' and the amount is greater than 4973.
SELECT * FROM deals WHERE Stage = 'Closed Lost' AND Amount > 4973 AND Closing_Date = '01/18/2025'
Show all deals where the stage is 'Qualification' and the amount is greater than 47032.
SELECT Stage, AVG(Amount) FROM deals GROUP BY Stage HAVING AVG(Amount) > 47032
Show all deals where the stage is 'Closed Won' and the amount is greater than 32324.
SELECT * FROM deals WHERE Amount > 32324 ORDER BY Closing_Date DESC
Show all deals where the stage is 'Closed Lost' and the amount is greater than 42836.
SELECT Stage, COUNT(*) FROM deals GROUP BY Stage HAVING COUNT(*) > 5
Show all deals where the stage is 'Proposal/Price Quote' and the amount is greater than 44360.
SELECT * FROM deals WHERE Stage IN ('Proposal/Price Quote', 'Negotiation/Review') AND Amount > 44360
Show all deals where the stage is 'Qualification' and the amount is greater than 5463.
SELECT * FROM deals WHERE Stage = 'Qualification' AND Amount > 5463 AND Closing_Date = '05/06/2025'
Show all deals where the stage is 'Closed Won' and the amount is greater than 10554.
SELECT * FROM deals WHERE Amount > 10554 AND Closing_Date = '03/26/2025'
Show all deals where the stage is 'Qualification' and the amount is greater than 38333.
SELECT * FROM deals WHERE Amount > 38333 ORDER BY Closing_Date DESC
Show all deals where the stage is 'Closed Lost' and the amount is greater than 7923.
SELECT * FROM deals WHERE Amount > 7923 AND Closing_Date = '11/15/2025'
Show all deals where the stage is 'Needs Analysis' and the amount is greater than 18232.
SELECT Stage, COUNT(*) FROM deals GROUP BY Stage HAVING COUNT(*) > 5
Show all deals where the stage is 'Qualification' and the amount is greater than 24872.
SELECT Stage, AVG(Amount) FROM deals GROUP BY Stage HAVING AVG(Amount) > 24872
Show all deals where the stage is 'Negotiation/Review' and the amount is greater than 42079.
SELECT Stage, COUNT(*) FROM deals GROUP BY Stage HAVING COUNT(*) > 5
Show all deals where the stage is 'Needs Analysis' and the amount is greater than 12096.
SELECT Stage, COUNT(*) FROM deals GROUP BY Stage HAVING COUNT(*) > 5
Show all deals where the stage is 'Negotiation/Review' and the amount is greater than 40289.
SELECT * FROM deals WHERE Amount > 40289 AND Closing_Date = '08/07/2025'
Show all deals where the stage is 'Identify Decision Makers' and the amount is greater than 17173.
SELECT Stage, AVG(Amount) FROM deals GROUP BY Stage HAVING AVG(Amount) > 17173
Show all deals where the stage is 'Identify Decision Makers' and the amount is greater than 39070.
SELECT * FROM deals WHERE Stage IN ('Identify Decision Makers', 'Negotiation/Review') AND Amount > 39070
Show all deals where the stage is 'Qualification' and the amount is greater than 27720.
SELECT * FROM deals WHERE Amount > 27720 ORDER BY Closing_Date DESC
Show all deals where the stage is 'Qualification' and the amount is greater than 6514.
SELECT Stage, AVG(Amount) FROM deals GROUP BY Stage HAVING AVG(Amount) > 6514
Show all deals where the stage is 'Closed Won' and the amount is greater than 2322.
SELECT deals.Deal_Name, accounts.Account_Name FROM deals JOIN accounts ON deals.Account_Name = accounts.Account_Name WHERE deals.Stage = 'Closed Won'
Show all deals where the stage is 'Closed Lost' and the amount is greater than 10972.
SELECT * FROM deals WHERE Amount > 10972 ORDER BY Closing_Date DESC
Show all deals where the stage is 'Closed Lost to Competition' and the amount is greater than 12082.
SELECT * FROM deals WHERE Stage = 'Closed Lost to Competition' AND Amount > 12082 AND Closing_Date = '01/03/2025'
Show all deals where the stage is 'Qualification' and the amount is greater than 49900.
SELECT deals.Deal_Name, accounts.Account_Name FROM deals JOIN accounts ON deals.Account_Name = accounts.Account_Name WHERE deals.Stage = 'Qualification'
Show all deals where the stage is 'Qualification' and the amount is greater than 21784.
SELECT * FROM deals WHERE Amount > 21784 ORDER BY Closing_Date DESC
Show all deals where the stage is 'Closed Won' and the amount is greater than 32170.
SELECT * FROM deals WHERE Stage = 'Closed Won' AND Amount > 32170 AND Closing_Date = '04/11/2025'
Show all deals where the stage is 'Proposal/Price Quote' and the amount is greater than 48138.
SELECT deals.Deal_Name, accounts.Account_Name FROM deals JOIN accounts ON deals.Account_Name = accounts.Account_Name WHERE deals.Stage = 'Proposal/Price Quote'
Show all deals where the stage is 'Identify Decision Makers' and the amount is greater than 45590.
SELECT * FROM deals WHERE Stage IN ('Identify Decision Makers', 'Negotiation/Review') AND Amount > 45590
Show all deals where the stage is 'Negotiation/Review' and the amount is greater than 28245.
SELECT * FROM deals WHERE Stage IN ('Negotiation/Review', 'Negotiation/Review') AND Amount > 28245
Show all deals where the stage is 'Closed Won' and the amount is greater than 7670.
SELECT * FROM deals WHERE Stage IN ('Closed Won', 'Negotiation/Review') AND Amount > 7670
Show all deals where the stage is 'Identify Decision Makers' and the amount is greater than 25569.
SELECT * FROM deals WHERE Amount > 25569 ORDER BY Closing_Date DESC
Show all deals where the stage is 'Closed Lost to Competition' and the amount is greater than 23545.
SELECT * FROM deals WHERE Stage = 'Closed Lost to Competition' AND Amount > 23545 AND Closing_Date = '08/18/2025'
Show all deals where the stage is 'Negotiation/Review' and the amount is greater than 32748.
SELECT Stage, AVG(Amount) FROM deals GROUP BY Stage HAVING AVG(Amount) > 32748
Show all deals where the stage is 'Closed Won' and the amount is greater than 49424.
SELECT * FROM deals WHERE Amount > 49424 ORDER BY Closing_Date DESC
Show all deals where the stage is 'Qualification' and the amount is greater than 25439.
SELECT * FROM deals WHERE Stage = 'Qualification' AND Amount > 25439 AND Closing_Date = '08/10/2025'
Show all deals where the stage is 'Needs Analysis' and the amount is greater than 36247.
SELECT * FROM deals WHERE Stage IN ('Needs Analysis', 'Negotiation/Review') AND Amount > 36247
Show all deals where the stage is 'Proposal/Price Quote' and the amount is greater than 5245.
SELECT * FROM deals WHERE Amount > 5245 ORDER BY Closing_Date DESC
Show all deals where the stage is 'Negotiation/Review' and the amount is greater than 5370.
SELECT Stage, AVG(Amount) FROM deals GROUP BY Stage HAVING AVG(Amount) > 5370
Show all deals where the stage is 'Negotiation/Review' and the amount is greater than 1281.
SELECT * FROM deals WHERE Amount > 1281 AND Closing_Date = '03/19/2025'
Show all deals where the stage is 'Closed Lost to Competition' and the amount is greater than 20345.
SELECT Stage, COUNT(*) FROM deals GROUP BY Stage HAVING COUNT(*) > 5
Show all deals where the stage is 'Proposal/Price Quote' and the amount is greater than 1187.
SELECT deals.Deal_Name, accounts.Account_Name FROM deals JOIN accounts ON deals.Account_Name = accounts.Account_Name WHERE deals.Stage = 'Proposal/Price Quote'
Show all deals where the stage is 'Closed Lost to Competition' and the amount is greater than 34880.
SELECT * FROM deals WHERE Stage = 'Closed Lost to Competition' AND Amount > 34880 AND Closing_Date = '04/02/2025'
Show all deals where the stage is 'Negotiation/Review' and the amount is greater than 3333.
SELECT deals.Deal_Name, accounts.Account_Name FROM deals JOIN accounts ON deals.Account_Name = accounts.Account_Name WHERE deals.Stage = 'Negotiation/Review'
Show all deals where the stage is 'Negotiation/Review' and the amount is greater than 8410.
SELECT Stage, COUNT(*) FROM deals GROUP BY Stage HAVING COUNT(*) > 5
Show all deals where the stage is 'Qualification' and the amount is greater than 42383.
SELECT Stage, COUNT(*) FROM deals GROUP BY Stage HAVING COUNT(*) > 5
Show all deals where the stage is 'Qualification' and the amount is greater than 4008.
SELECT * FROM deals WHERE Stage = 'Qualification' AND Amount > 4008 AND Closing_Date = '03/08/2025'
Show all deals where the stage is 'Closed Lost to Competition' and the amount is greater than 49109.
SELECT deals.Deal_Name, accounts.Account_Name FROM deals JOIN accounts ON deals.Account_Name = accounts.Account_Name WHERE deals.Stage = 'Closed Lost to Competition'
Show all deals where the stage is 'Qualification' and the amount is greater than 44041.
SELECT * FROM deals WHERE Stage = 'Qualification' AND Amount > 44041 AND Closing_Date = '10/03/2025'
Show all deals where the stage is 'Needs Analysis' and the amount is greater than 13183.
SELECT * FROM deals WHERE Stage = 'Needs Analysis' AND Amount > 13183 AND Closing_Date = '05/17/2025'
Show all deals where the stage is 'Proposal/Price Quote' and the amount is greater than 43471.
SELECT * FROM deals WHERE Stage = 'Proposal/Price Quote' AND Amount > 43471 AND Closing_Date = '05/23/2025'
Show all deals where the stage is 'Qualification' and the amount is greater than 7744.
SELECT Stage, AVG(Amount) FROM deals GROUP BY Stage HAVING AVG(Amount) > 7744
Show all deals where the stage is 'Closed Won' and the amount is greater than 1236.
SELECT * FROM deals WHERE Stage IN ('Closed Won', 'Negotiation/Review') AND Amount > 1236
Show all deals where the stage is 'Closed Lost' and the amount is greater than 17779.
SELECT Stage, COUNT(*) FROM deals GROUP BY Stage HAVING COUNT(*) > 5
Show all deals where the stage is 'Proposal/Price Quote' and the amount is greater than 33507.
SELECT Stage, COUNT(*) FROM deals GROUP BY Stage HAVING COUNT(*) > 5
Show all deals where the stage is 'Qualification' and the amount is greater than 44391.
SELECT Stage, AVG(Amount) FROM deals GROUP BY Stage HAVING AVG(Amount) > 44391
Show all deals where the stage is 'Identify Decision Makers' and the amount is greater than 48470.
SELECT * FROM deals WHERE Amount > 48470 ORDER BY Closing_Date DESC
Show all deals where the stage is 'Qualification' and the amount is greater than 46206.
SELECT Stage, COUNT(*) FROM deals GROUP BY Stage HAVING COUNT(*) > 5
Show all deals where the stage is 'Closed Lost to Competition' and the amount is greater than 28535.
SELECT * FROM deals WHERE Amount > 28535 ORDER BY Closing_Date DESC
Show all deals where the stage is 'Identify Decision Makers' and the amount is greater than 20918.
SELECT Stage, COUNT(*) FROM deals GROUP BY Stage HAVING COUNT(*) > 5
Show all deals where the stage is 'Qualification' and the amount is greater than 47676.
SELECT Stage, COUNT(*) FROM deals GROUP BY Stage HAVING COUNT(*) > 5
Show all deals where the stage is 'Qualification' and the amount is greater than 31894.
SELECT deals.Deal_Name, accounts.Account_Name FROM deals JOIN accounts ON deals.Account_Name = accounts.Account_Name WHERE deals.Stage = 'Qualification'
Show all deals where the stage is 'Qualification' and the amount is greater than 41517.
SELECT * FROM deals WHERE Amount > 41517 AND Closing_Date = '05/06/2025'
Show all deals where the stage is 'Negotiation/Review' and the amount is greater than 49869.
SELECT Stage, COUNT(*) FROM deals GROUP BY Stage HAVING COUNT(*) > 5
Show all deals where the stage is 'Value Proposition' and the amount is greater than 47520.
SELECT * FROM deals WHERE Stage = 'Value Proposition' AND Amount > 47520 AND Closing_Date = '08/17/2025'
Show all deals where the stage is 'Negotiation/Review' and the amount is greater than 32508.
SELECT * FROM deals WHERE Stage = 'Negotiation/Review' AND Amount > 32508 AND Closing_Date = '06/09/2025'
Show all deals where the stage is 'Identify Decision Makers' and the amount is greater than 42085.
SELECT * FROM deals WHERE Stage = 'Identify Decision Makers' AND Amount > 42085 AND Closing_Date = '06/08/2025'
Show all deals where the stage is 'Value Proposition' and the amount is greater than 13481.
SELECT Stage, AVG(Amount) FROM deals GROUP BY Stage HAVING AVG(Amount) > 13481
Show all deals where the stage is 'Value Proposition' and the amount is greater than 18238.
SELECT * FROM deals WHERE Amount > 18238 ORDER BY Closing_Date DESC
Show all deals where the stage is 'Identify Decision Makers' and the amount is greater than 3153.
SELECT deals.Deal_Name, accounts.Account_Name FROM deals JOIN accounts ON deals.Account_Name = accounts.Account_Name WHERE deals.Stage = 'Identify Decision Makers'
Show all deals where the stage is 'Proposal/Price Quote' and the amount is greater than 7033.
SELECT Stage, COUNT(*) FROM deals GROUP BY Stage HAVING COUNT(*) > 5
Show all deals where the stage is 'Needs Analysis' and the amount is greater than 22859.
SELECT deals.Deal_Name, accounts.Account_Name FROM deals JOIN accounts ON deals.Account_Name = accounts.Account_Name WHERE deals.Stage = 'Needs Analysis'
Show all deals where the stage is 'Value Proposition' and the amount is greater than 19209.
SELECT Stage, AVG(Amount) FROM deals GROUP BY Stage HAVING AVG(Amount) > 19209
Show all deals where the stage is 'Negotiation/Review' and the amount is greater than 15773.
SELECT * FROM deals WHERE Stage IN ('Negotiation/Review', 'Negotiation/Review') AND Amount > 15773
Show all deals where the stage is 'Closed Won' and the amount is greater than 14013.
SELECT Stage, COUNT(*) FROM deals GROUP BY Stage HAVING COUNT(*) > 5
Show all deals where the stage is 'Closed Won' and the amount is greater than 3537.
SELECT Stage, AVG(Amount) FROM deals GROUP BY Stage HAVING AVG(Amount) > 3537
Show all deals where the stage is 'Proposal/Price Quote' and the amount is greater than 11604.
SELECT * FROM deals WHERE Stage IN ('Proposal/Price Quote', 'Negotiation/Review') AND Amount > 11604
Show all deals where the stage is 'Negotiation/Review' and the amount is greater than 3818.
SELECT * FROM deals WHERE Stage IN ('Negotiation/Review', 'Negotiation/Review') AND Amount > 3818
Show all deals where the stage is 'Proposal/Price Quote' and the amount is greater than 26745.
SELECT * FROM deals WHERE Stage = 'Proposal/Price Quote' AND Amount > 26745 AND Closing_Date = '03/16/2025'
Show all deals where the stage is 'Closed Lost to Competition' and the amount is greater than 47249.
SELECT deals.Deal_Name, accounts.Account_Name FROM deals JOIN accounts ON deals.Account_Name = accounts.Account_Name WHERE deals.Stage = 'Closed Lost to Competition'
Show all deals where the stage is 'Identify Decision Makers' and the amount is greater than 13281.
SELECT Stage, AVG(Amount) FROM deals GROUP BY Stage HAVING AVG(Amount) > 13281
Show all deals where the stage is 'Closed Won' and the amount is greater than 31199.
SELECT deals.Deal_Name, accounts.Account_Name FROM deals JOIN accounts ON deals.Account_Name = accounts.Account_Name WHERE deals.Stage = 'Closed Won'
Show all deals where the stage is 'Needs Analysis' and the amount is greater than 15975.
SELECT * FROM deals WHERE Stage IN ('Needs Analysis', 'Negotiation/Review') AND Amount > 15975
Show all deals where the stage is 'Proposal/Price Quote' and the amount is greater than 1149.
SELECT * FROM deals WHERE Amount > 1149 ORDER BY Closing_Date DESC
Show all deals where the stage is 'Closed Lost to Competition' and the amount is greater than 2426.
SELECT Stage, AVG(Amount) FROM deals GROUP BY Stage HAVING AVG(Amount) > 2426
Show all deals where the stage is 'Identify Decision Makers' and the amount is greater than 33133.
SELECT deals.Deal_Name, accounts.Account_Name FROM deals JOIN accounts ON deals.Account_Name = accounts.Account_Name WHERE deals.Stage = 'Identify Decision Makers'
Show all deals where the stage is 'Value Proposition' and the amount is greater than 10778.
SELECT deals.Deal_Name, accounts.Account_Name FROM deals JOIN accounts ON deals.Account_Name = accounts.Account_Name WHERE deals.Stage = 'Value Proposition'
Show all deals where the stage is 'Closed Lost' and the amount is greater than 21773.
SELECT * FROM deals WHERE Stage IN ('Closed Lost', 'Negotiation/Review') AND Amount > 21773
Show all deals where the stage is 'Proposal/Price Quote' and the amount is greater than 41434.
SELECT * FROM deals WHERE Amount > 41434 AND Closing_Date = '06/06/2025'
Show all deals where the stage is 'Needs Analysis' and the amount is greater than 39996.
SELECT * FROM deals WHERE Stage = 'Needs Analysis' AND Amount > 39996 AND Closing_Date = '08/01/2025'
Show all deals where the stage is 'Closed Won' and the amount is greater than 3934.
SELECT * FROM deals WHERE Amount > 3934 ORDER BY Closing_Date DESC
Show all deals where the stage is 'Negotiation/Review' and the amount is greater than 20922.
SELECT * FROM deals WHERE Amount > 20922 AND Closing_Date = '12/28/2025'
Show all deals where the stage is 'Value Proposition' and the amount is greater than 36851.
SELECT * FROM deals WHERE Amount > 36851 AND Closing_Date = '09/26/2025'
Show all deals where the stage is 'Closed Lost' and the amount is greater than 43434.
SELECT * FROM deals WHERE Amount > 43434 AND Closing_Date = '10/21/2025'
Show all deals where the stage is 'Value Proposition' and the amount is greater than 11487.
SELECT Stage, AVG(Amount) FROM deals GROUP BY Stage HAVING AVG(Amount) > 11487
Show all deals where the stage is 'Closed Lost' and the amount is greater than 14967.
SELECT deals.Deal_Name, accounts.Account_Name FROM deals JOIN accounts ON deals.Account_Name = accounts.Account_Name WHERE deals.Stage = 'Closed Lost'
Show all deals where the stage is 'Negotiation/Review' and the amount is greater than 9269.
SELECT * FROM deals WHERE Amount > 9269 AND Closing_Date = '04/08/2025'
Show all deals where the stage is 'Needs Analysis' and the amount is greater than 1114.
SELECT Stage, AVG(Amount) FROM deals GROUP BY Stage HAVING AVG(Amount) > 1114
Show all deals where the stage is 'Closed Lost to Competition' and the amount is greater than 33329.
SELECT * FROM deals WHERE Stage IN ('Closed Lost to Competition', 'Negotiation/Review') AND Amount > 33329
End of preview. Expand in Data Studio

No dataset card yet

Downloads last month
4