combined_text
stringlengths 106
1.05k
|
---|
###question:Which couple danced a jive and received a score of 21 (6, 7, 8)?###answer:SELECT couple FROM table_name_98 WHERE dance = "jive" AND score = "21 (6, 7, 8)"###context:CREATE TABLE table_name_98 (couple VARCHAR, dance VARCHAR, score VARCHAR) |
###question:What was the score of the team that danced a jive and was safe?###answer:SELECT score FROM table_name_65 WHERE dance = "jive" AND result = "safe"###context:CREATE TABLE table_name_65 (score VARCHAR, dance VARCHAR, result VARCHAR) |
###question:What engine did Dick Simon Racing use?###answer:SELECT engine FROM table_name_21 WHERE team = "dick simon racing"###context:CREATE TABLE table_name_21 (engine VARCHAR, team VARCHAR) |
###question:Who drove for Arciero Racing?###answer:SELECT drivers FROM table_name_31 WHERE team = "arciero racing"###context:CREATE TABLE table_name_31 (drivers VARCHAR, team VARCHAR) |
###question:What Chassis did Rich Vogler use?###answer:SELECT chassis FROM table_name_94 WHERE drivers = "rich vogler"###context:CREATE TABLE table_name_94 (chassis VARCHAR, drivers VARCHAR) |
###question:What tires did Johnny Parsons use?###answer:SELECT tires FROM table_name_46 WHERE drivers = "johnny parsons"###context:CREATE TABLE table_name_46 (tires VARCHAR, drivers VARCHAR) |
###question:What race did Bobby Unser win?###answer:SELECT name FROM table_name_72 WHERE winning_driver = "bobby unser"###context:CREATE TABLE table_name_72 (name VARCHAR, winning_driver VARCHAR) |
###question:Which driver won the Indianapolis 500 the year the Chaparral team also won it?###answer:SELECT winning_driver FROM table_name_67 WHERE winning_team = "chaparral" AND name = "indianapolis 500"###context:CREATE TABLE table_name_67 (winning_driver VARCHAR, winning_team VARCHAR, name VARCHAR) |
###question:Which report includes Bobby Unser as the Pole Position and Rick Mears as the Winning driver?###answer:SELECT report FROM table_name_33 WHERE pole_position = "bobby unser" AND winning_driver = "rick mears"###context:CREATE TABLE table_name_33 (report VARCHAR, pole_position VARCHAR, winning_driver VARCHAR) |
###question:Which race has a winning team of Penske Racing, and a winning driver of Bobby Unser?###answer:SELECT name FROM table_name_62 WHERE winning_team = "penske racing" AND winning_driver = "bobby unser"###context:CREATE TABLE table_name_62 (name VARCHAR, winning_team VARCHAR, winning_driver VARCHAR) |
###question:On what day is geelong the home team?###answer:SELECT date FROM table_name_37 WHERE home_team = "geelong"###context:CREATE TABLE table_name_37 (date VARCHAR, home_team VARCHAR) |
###question:What venue featured collingwood as the away side?###answer:SELECT venue FROM table_name_11 WHERE away_team = "collingwood"###context:CREATE TABLE table_name_11 (venue VARCHAR, away_team VARCHAR) |
###question:What is the home team score at windy hill?###answer:SELECT home_team AS score FROM table_name_16 WHERE venue = "windy hill"###context:CREATE TABLE table_name_16 (home_team VARCHAR, venue VARCHAR) |
###question:What season has races larger than 18 and 36 points?###answer:SELECT season FROM table_name_35 WHERE races > 18 AND points = 36###context:CREATE TABLE table_name_35 (season VARCHAR, races VARCHAR, points VARCHAR) |
###question:The venue of Brunswick Street Oval was used on what date?###answer:SELECT date FROM table_name_53 WHERE venue = "brunswick street oval"###context:CREATE TABLE table_name_53 (date VARCHAR, venue VARCHAR) |
###question:What is the smallest crowd with the away team of North Melbourne?###answer:SELECT MIN(crowd) FROM table_name_61 WHERE away_team = "north melbourne"###context:CREATE TABLE table_name_61 (crowd INTEGER, away_team VARCHAR) |
###question:On which date was Essendon the home team?###answer:SELECT date FROM table_name_91 WHERE home_team = "essendon"###context:CREATE TABLE table_name_91 (date VARCHAR, home_team VARCHAR) |
###question:What is the name of the airport with IATA code DAC?###answer:SELECT airport FROM table_name_10 WHERE iata = "dac"###context:CREATE TABLE table_name_10 (airport VARCHAR, iata VARCHAR) |
###question:What is the IATA code for Delhi?###answer:SELECT iata FROM table_name_56 WHERE city = "delhi"###context:CREATE TABLE table_name_56 (iata VARCHAR, city VARCHAR) |
###question:What is the IATA code for the city with ICAO code of RCMQ?###answer:SELECT iata FROM table_name_98 WHERE icao = "rcmq"###context:CREATE TABLE table_name_98 (iata VARCHAR, icao VARCHAR) |
###question:What is the airport with ICAO code of WMKP?###answer:SELECT airport FROM table_name_39 WHERE icao = "wmkp"###context:CREATE TABLE table_name_39 (airport VARCHAR, icao VARCHAR) |
###question:What is the IATA code for SHahjalal International Airport?###answer:SELECT iata FROM table_name_7 WHERE airport = "shahjalal international airport"###context:CREATE TABLE table_name_7 (iata VARCHAR, airport VARCHAR) |
###question:What is the ICAO for the airport in Ningbo?###answer:SELECT icao FROM table_name_54 WHERE city = "ningbo"###context:CREATE TABLE table_name_54 (icao VARCHAR, city VARCHAR) |
###question:What is the BB pop of the song with a CB CW of 1, RIAA of P and was released more recently than 1976?###answer:SELECT bb_pop FROM table_name_93 WHERE cb_cw = "1" AND year > 1976 AND riaa = "p"###context:CREATE TABLE table_name_93 (bb_pop VARCHAR, riaa VARCHAR, cb_cw VARCHAR, year VARCHAR) |
###question:What is the CB CW of the song which has a BB Pop of 11?###answer:SELECT cb_cw FROM table_name_73 WHERE bb_pop = "11"###context:CREATE TABLE table_name_73 (cb_cw VARCHAR, bb_pop VARCHAR) |
###question:What was the crowd numbers when the VFL played Victoria Park?###answer:SELECT SUM(crowd) FROM table_name_50 WHERE venue = "victoria park"###context:CREATE TABLE table_name_50 (crowd INTEGER, venue VARCHAR) |
###question:When the VFL played at Junction Oval what was the away score?###answer:SELECT away_team AS score FROM table_name_15 WHERE venue = "junction oval"###context:CREATE TABLE table_name_15 (away_team VARCHAR, venue VARCHAR) |
###question:Who was the away team for the game played in front of more than 41,402 fans?###answer:SELECT away_team FROM table_name_46 WHERE crowd > 41 OFFSET 402###context:CREATE TABLE table_name_46 (away_team VARCHAR, crowd INTEGER) |
###question:What Home team played Richmond?###answer:SELECT home_team FROM table_name_22 WHERE away_team = "richmond"###context:CREATE TABLE table_name_22 (home_team VARCHAR, away_team VARCHAR) |
###question:What is Melbourne's home venue?###answer:SELECT venue FROM table_name_32 WHERE home_team = "melbourne"###context:CREATE TABLE table_name_32 (venue VARCHAR, home_team VARCHAR) |
###question:Was the game home or away when the record is 6-12?###answer:SELECT home___away FROM table_name_23 WHERE record = "6-12"###context:CREATE TABLE table_name_23 (home___away VARCHAR, record VARCHAR) |
###question:What is the date of the away game at the Blue Cross Arena?###answer:SELECT date FROM table_name_78 WHERE home___away = "away" AND location_attendance = "blue cross arena"###context:CREATE TABLE table_name_78 (date VARCHAR, home___away VARCHAR, location_attendance VARCHAR) |
###question:What is the week for the stadium that had an attendance of 22,286?###answer:SELECT AVG(week) FROM table_name_26 WHERE attendance = "22,286"###context:CREATE TABLE table_name_26 (week INTEGER, attendance VARCHAR) |
###question:How many assists for player(s) with over 107 games and ranked less than 2?###answer:SELECT COUNT(total_assists) FROM table_name_20 WHERE games > 107 AND rank < 2###context:CREATE TABLE table_name_20 (total_assists VARCHAR, games VARCHAR, rank VARCHAR) |
###question:What is the total number of assists for players with under 55 games and over 6 assists per game average?###answer:SELECT SUM(total_assists) FROM table_name_11 WHERE ast_avg > 6 AND games < 55###context:CREATE TABLE table_name_11 (total_assists INTEGER, ast_avg VARCHAR, games VARCHAR) |
###question:What is the average rank for players with less than 2.9 Assists per game?###answer:SELECT AVG(rank) FROM table_name_35 WHERE ast_avg < 2.9###context:CREATE TABLE table_name_35 (rank INTEGER, ast_avg INTEGER) |
###question:What circuit had an ensign n180 as the winning car in round 5?###answer:SELECT circuit FROM table_name_79 WHERE winning_car = "ensign n180" AND round = 5###context:CREATE TABLE table_name_79 (circuit VARCHAR, winning_car VARCHAR, round VARCHAR) |
###question:How many rounds total were there on may 31?###answer:SELECT COUNT(round) FROM table_name_79 WHERE date = "may 31"###context:CREATE TABLE table_name_79 (round VARCHAR, date VARCHAR) |
###question:What was the average round for the oulton park circuit?###answer:SELECT AVG(round) FROM table_name_56 WHERE circuit = "oulton park"###context:CREATE TABLE table_name_56 (round INTEGER, circuit VARCHAR) |
###question:Who was the opposing team at the match played at the Arden Street Oval?###answer:SELECT away_team FROM table_name_64 WHERE venue = "arden street oval"###context:CREATE TABLE table_name_64 (away_team VARCHAR, venue VARCHAR) |
###question:What was the opposing team's score at the match that was played at Victoria Park?###answer:SELECT away_team AS score FROM table_name_31 WHERE venue = "victoria park"###context:CREATE TABLE table_name_31 (away_team VARCHAR, venue VARCHAR) |
###question:Which venue did the match where Collingwood was the home team take place?###answer:SELECT venue FROM table_name_32 WHERE home_team = "collingwood"###context:CREATE TABLE table_name_32 (venue VARCHAR, home_team VARCHAR) |
###question:Who is the away side when north melbourne is the home side?###answer:SELECT away_team FROM table_name_79 WHERE home_team = "north melbourne"###context:CREATE TABLE table_name_79 (away_team VARCHAR, home_team VARCHAR) |
###question:How many games feature hawthorn as the away squad?###answer:SELECT COUNT(crowd) FROM table_name_8 WHERE away_team = "hawthorn"###context:CREATE TABLE table_name_8 (crowd VARCHAR, away_team VARCHAR) |
###question:What Nationality has a Time of 9:01.70?###answer:SELECT nationality FROM table_name_58 WHERE time = "9:01.70"###context:CREATE TABLE table_name_58 (nationality VARCHAR, time VARCHAR) |
###question:What is sun yang's lowest rank?###answer:SELECT MIN(rank) FROM table_name_20 WHERE name = "sun yang"###context:CREATE TABLE table_name_20 (rank INTEGER, name VARCHAR) |
###question:How many ranks have a ationality of canada, and a Time of dns?###answer:SELECT COUNT(rank) FROM table_name_12 WHERE nationality = "canada" AND time = "dns"###context:CREATE TABLE table_name_12 (rank VARCHAR, nationality VARCHAR, time VARCHAR) |
###question:Who played Fitzroy at their own home?###answer:SELECT home_team AS score FROM table_name_42 WHERE away_team = "fitzroy"###context:CREATE TABLE table_name_42 (home_team VARCHAR, away_team VARCHAR) |
###question:What team plays at home at Lake Oval?###answer:SELECT home_team FROM table_name_2 WHERE venue = "lake oval"###context:CREATE TABLE table_name_2 (home_team VARCHAR, venue VARCHAR) |
###question:What was Melbourne's score as the away team?###answer:SELECT away_team AS score FROM table_name_17 WHERE away_team = "melbourne"###context:CREATE TABLE table_name_17 (away_team VARCHAR) |
###question:On what date was the match played in Victoria Park?###answer:SELECT date FROM table_name_78 WHERE venue = "victoria park"###context:CREATE TABLE table_name_78 (date VARCHAR, venue VARCHAR) |
###question:What is the away team's score when geelong is the away team?###answer:SELECT away_team AS score FROM table_name_73 WHERE away_team = "geelong"###context:CREATE TABLE table_name_73 (away_team VARCHAR) |
###question:What is the away team's score when south melbourne is the away team?###answer:SELECT away_team AS score FROM table_name_36 WHERE away_team = "south melbourne"###context:CREATE TABLE table_name_36 (away_team VARCHAR) |
###question:What was the result of the film made before 2005, winner of the robert award, in the category of best actress?###answer:SELECT result FROM table_name_89 WHERE category = "best actress" AND year < 2005 AND award = "robert award"###context:CREATE TABLE table_name_89 (result VARCHAR, award VARCHAR, category VARCHAR, year VARCHAR) |
###question:What was the result of the bodil award winning film from before 2005 in the best actress category?###answer:SELECT result FROM table_name_37 WHERE award = "bodil award" AND category = "best actress" AND year = 2005###context:CREATE TABLE table_name_37 (result VARCHAR, year VARCHAR, award VARCHAR, category VARCHAR) |
###question:What category is the nominated work of cecilie, winner of the robert award?###answer:SELECT category FROM table_name_43 WHERE nominated_work = "cecilie" AND award = "robert award"###context:CREATE TABLE table_name_43 (category VARCHAR, nominated_work VARCHAR, award VARCHAR) |
###question:Who was the away team at Victoria Park?###answer:SELECT away_team FROM table_name_1 WHERE venue = "victoria park"###context:CREATE TABLE table_name_1 (away_team VARCHAR, venue VARCHAR) |
###question:What is the date of the game where Footscray was the away team?###answer:SELECT date FROM table_name_2 WHERE away_team = "footscray"###context:CREATE TABLE table_name_2 (date VARCHAR, away_team VARCHAR) |
###question:What week did they have a bye?###answer:SELECT week FROM table_name_66 WHERE opponent = "bye"###context:CREATE TABLE table_name_66 (week VARCHAR, opponent VARCHAR) |
###question:How many people watch at Western Oval venue?###answer:SELECT COUNT(crowd) FROM table_name_4 WHERE venue = "western oval"###context:CREATE TABLE table_name_4 (crowd VARCHAR, venue VARCHAR) |
###question:How many people are in the crowd in south melbourne?###answer:SELECT COUNT(crowd) FROM table_name_66 WHERE home_team = "south melbourne"###context:CREATE TABLE table_name_66 (crowd VARCHAR, home_team VARCHAR) |
###question:What was the highest crowd at Windy Hill?###answer:SELECT MAX(crowd) FROM table_name_56 WHERE venue = "windy hill"###context:CREATE TABLE table_name_56 (crowd INTEGER, venue VARCHAR) |
###question:How many people at Arden Street Oval?###answer:SELECT COUNT(crowd) FROM table_name_21 WHERE venue = "arden street oval"###context:CREATE TABLE table_name_21 (crowd VARCHAR, venue VARCHAR) |
###question:Which Neck has a Bullet of 10.566 (.416), and a Base of 14.78 (.582)?###answer:SELECT neck FROM table_name_48 WHERE bullet = "10.566 (.416)" AND base = "14.78 (.582)"###context:CREATE TABLE table_name_48 (neck VARCHAR, bullet VARCHAR, base VARCHAR) |
###question:Which Case Length has a Base of 14.96 (.589)?###answer:SELECT case_length FROM table_name_57 WHERE base = "14.96 (.589)"###context:CREATE TABLE table_name_57 (case_length VARCHAR, base VARCHAR) |
###question:A .416 barrett has which Case Length?###answer:SELECT case_length FROM table_name_9 WHERE name = ".416 barrett"###context:CREATE TABLE table_name_9 (case_length VARCHAR, name VARCHAR) |
###question:Which Name has a Case Length of 73.99 (2.913)?###answer:SELECT name FROM table_name_16 WHERE case_length = "73.99 (2.913)"###context:CREATE TABLE table_name_16 (name VARCHAR, case_length VARCHAR) |
###question:Which Base has a Name of .44 wcf?###answer:SELECT base FROM table_name_2 WHERE name = ".44 wcf"###context:CREATE TABLE table_name_2 (base VARCHAR, name VARCHAR) |
###question:Which Name has a Bullett of 10.57 (.416) and a Base of 14.96 (.589)?###answer:SELECT name FROM table_name_86 WHERE bullet = "10.57 (.416)" AND base = "14.96 (.589)"###context:CREATE TABLE table_name_86 (name VARCHAR, bullet VARCHAR, base VARCHAR) |
###question:When Richmond was the home team, what was the home team score?###answer:SELECT home_team AS score FROM table_name_24 WHERE home_team = "richmond"###context:CREATE TABLE table_name_24 (home_team VARCHAR) |
###question:What was the highest crowd size at Windy Hill?###answer:SELECT MAX(crowd) FROM table_name_50 WHERE venue = "windy hill"###context:CREATE TABLE table_name_50 (crowd INTEGER, venue VARCHAR) |
###question:When the away team was Geelong, what was the home team score?###answer:SELECT home_team AS score FROM table_name_97 WHERE away_team = "geelong"###context:CREATE TABLE table_name_97 (home_team VARCHAR, away_team VARCHAR) |
###question:When did the home team of Richmond play?###answer:SELECT date FROM table_name_89 WHERE home_team = "richmond"###context:CREATE TABLE table_name_89 (date VARCHAR, home_team VARCHAR) |
###question:How many golds for Canada (12 total)?###answer:SELECT gold FROM table_name_7 WHERE total > 12 AND nation = "canada"###context:CREATE TABLE table_name_7 (gold VARCHAR, total VARCHAR, nation VARCHAR) |
###question:What was the team's record after week 7 with 28,161 attending?###answer:SELECT record FROM table_name_58 WHERE week > 7 AND attenmdance = "28,161"###context:CREATE TABLE table_name_58 (record VARCHAR, week VARCHAR, attenmdance VARCHAR) |
###question:What was the attendance at war memorial stadium?###answer:SELECT attenmdance FROM table_name_8 WHERE stadium = "war memorial stadium"###context:CREATE TABLE table_name_8 (attenmdance VARCHAR, stadium VARCHAR) |
###question:How many silver medals did the country that won 20 gold medals win in the 1955 Pan American Games?###answer:SELECT SUM(silver) FROM table_name_62 WHERE gold = 20###context:CREATE TABLE table_name_62 (silver INTEGER, gold VARCHAR) |
###question:What team had 159 laps and a Time/Retired of 6:30:02.3733?###answer:SELECT team FROM table_name_75 WHERE laps = 159 AND time_retired = "6:30:02.3733"###context:CREATE TABLE table_name_75 (team VARCHAR, laps VARCHAR, time_retired VARCHAR) |
###question:What team had less than 159 laps and a time or retired time of 4:00:30.7537 (retired - fire)?###answer:SELECT name FROM table_name_14 WHERE laps < 159 AND time_retired = "4:00:30.7537 (retired - fire)"###context:CREATE TABLE table_name_14 (name VARCHAR, laps VARCHAR, time_retired VARCHAR) |
###question:What was the score of the Browns game against the San Francisco 49ers?###answer:SELECT result FROM table_name_7 WHERE opponent = "san francisco 49ers"###context:CREATE TABLE table_name_7 (result VARCHAR, opponent VARCHAR) |
###question:What was the final score for Aguilar when he played Hans Podlipnik on clay and was runner-up?###answer:SELECT score FROM table_name_47 WHERE surface = "clay" AND opponent = "hans podlipnik" AND outcome = "runner-up"###context:CREATE TABLE table_name_47 (score VARCHAR, outcome VARCHAR, surface VARCHAR, opponent VARCHAR) |
###question:What round is highest and has a defensive tackle position and overall lower than 282?###answer:SELECT MAX(round) FROM table_name_12 WHERE position = "defensive tackle" AND overall < 282###context:CREATE TABLE table_name_12 (round INTEGER, position VARCHAR, overall VARCHAR) |
###question:What position is the round higher than 15 and has an overall of 411.###answer:SELECT position FROM table_name_82 WHERE round > 15 AND overall = 411###context:CREATE TABLE table_name_82 (position VARCHAR, round VARCHAR, overall VARCHAR) |
###question:What is the name of the away team with glenferrie oval venue?###answer:SELECT away_team FROM table_name_72 WHERE venue = "glenferrie oval"###context:CREATE TABLE table_name_72 (away_team VARCHAR, venue VARCHAR) |
###question:What stadium is in penrith?###answer:SELECT stadium FROM table_name_11 WHERE city = "penrith"###context:CREATE TABLE table_name_11 (stadium VARCHAR, city VARCHAR) |
###question:What day did they play in central park stadium?###answer:SELECT date FROM table_name_50 WHERE stadium = "central park"###context:CREATE TABLE table_name_50 (date VARCHAR, stadium VARCHAR) |
###question:What is the lowest attendance when footscray is the away team?###answer:SELECT MIN(crowd) FROM table_name_61 WHERE away_team = "footscray"###context:CREATE TABLE table_name_61 (crowd INTEGER, away_team VARCHAR) |
###question:What venue featured essendon as home team?###answer:SELECT venue FROM table_name_25 WHERE home_team = "essendon"###context:CREATE TABLE table_name_25 (venue VARCHAR, home_team VARCHAR) |
###question:What is the sum of crowd(s) at princes park?###answer:SELECT SUM(crowd) FROM table_name_45 WHERE venue = "princes park"###context:CREATE TABLE table_name_45 (crowd INTEGER, venue VARCHAR) |
###question:What is the away team that features a home team of south melbourne?###answer:SELECT away_team AS score FROM table_name_53 WHERE home_team = "south melbourne"###context:CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR) |
###question:What is the smallest crowd when collingwood is home team?###answer:SELECT MIN(crowd) FROM table_name_91 WHERE home_team = "collingwood"###context:CREATE TABLE table_name_91 (crowd INTEGER, home_team VARCHAR) |
###question:During which round was the first defensive end with an overall rank larger than 186 drafted?###answer:SELECT MIN(round) FROM table_name_65 WHERE overall > 186 AND position = "defensive end"###context:CREATE TABLE table_name_65 (round INTEGER, overall VARCHAR, position VARCHAR) |
###question:What is the highest number of losses with 23 points and 22 plays?###answer:SELECT MAX(lost) FROM table_name_58 WHERE points = 23 AND played > 22###context:CREATE TABLE table_name_58 (lost INTEGER, points VARCHAR, played VARCHAR) |
###question:What is the sum of goals scored for the Al Wahda team with less than 4 drawn and more than 22 plays?###answer:SELECT SUM(goals_for) FROM table_name_6 WHERE drawn < 4 AND team = "al wahda" AND played > 22###context:CREATE TABLE table_name_6 (goals_for INTEGER, played VARCHAR, drawn VARCHAR, team VARCHAR) |
###question:How many goals scored against the opposing team occurred with more than 7 losses, less than 27 goals scored for the team and drawn more than 1?###answer:SELECT COUNT(goals_against) FROM table_name_85 WHERE lost > 7 AND goals_for < 27 AND drawn > 1###context:CREATE TABLE table_name_85 (goals_against VARCHAR, drawn VARCHAR, lost VARCHAR, goals_for VARCHAR) |
###question:What is the highest number of plays when drawn is more than 4, more than 30 points were earned, and 37 goals scored for the team?###answer:SELECT MAX(played) FROM table_name_91 WHERE drawn > 4 AND goals_for = 37 AND points > 30###context:CREATE TABLE table_name_91 (played INTEGER, points VARCHAR, drawn VARCHAR, goals_for VARCHAR) |
###question:What was Geelong's score when they were the away team?###answer:SELECT away_team AS score FROM table_name_62 WHERE away_team = "geelong"###context:CREATE TABLE table_name_62 (away_team VARCHAR) |
###question:What was the score of Richmond when they were the away team?###answer:SELECT away_team AS score FROM table_name_62 WHERE away_team = "richmond"###context:CREATE TABLE table_name_62 (away_team VARCHAR) |
###question:What is the away team's score at brunswick street oval?###answer:SELECT away_team AS score FROM table_name_80 WHERE venue = "brunswick street oval"###context:CREATE TABLE table_name_80 (away_team VARCHAR, venue VARCHAR) |
###question:What is the smallest crowd at punt road oval?###answer:SELECT MIN(crowd) FROM table_name_10 WHERE venue = "punt road oval"###context:CREATE TABLE table_name_10 (crowd INTEGER, venue VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.