File size: 44,222 Bytes
b4fe39c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
db_path,db_id,tbl_name,test_category,sql_tag,query,question,time,predicted_sql,model,valid_efficiency_score,cell_precision,cell_recall,execution_accuracy,tuple_cardinality,tuple_constraint,tuple_order
./data/data_interfacesample_database.sqlite,sample_database,Users,DISTINCT,DISTINCT-SINGLE,SELECT DISTINCT `name` FROM `Users`,Show the different name in the table Users,2.893311539274306,SELECT DISTINCT name FROM Users;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.4478534779226413,39.222096608793336,18.232621882281208,9.814813561238955,83.44841771351278,75.23678027976902,95.7054911905899
./data/data_interfacesample_database.sqlite,sample_database,Users,GROUPBY,GROUPBY-COUNT,"SELECT `name`, COUNT(*) FROM `Users` GROUP BY `name`","For each name, count the number of rows in table Users",10.64402184462904,"SELECT name, COUNT(*) as count FROM Users GROUP BY name;",meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.6793566211857026,98.16569127812072,9.262096460076485,44.26889182130957,43.95144398962785,52.72739845793545,82.25810582433857
./data/data_interfacesample_database.sqlite,sample_database,Users,GROUPBY,GROUPBY-AGG-MIN,"SELECT `name`, MIN(`age`) FROM `Users` GROUP BY `name`","For each name, find the min of age in table Users",7.552493305908578,"SELECT name, MIN(age) FROM Users GROUP BY name;",meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.6647860334550141,78.74615518832738,77.06337037107551,37.924330940702276,88.34090288926342,68.82199285490181,43.612385085144176
./data/data_interfacesample_database.sqlite,sample_database,Users,GROUPBY,GROUPBY-AGG-MAX,"SELECT `name`, MAX(`age`) FROM `Users` GROUP BY `name`","For each name, find the max of age in table Users",7.39486218697634,"SELECT name, MAX(age) FROM Users GROUP BY name;",meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.9809904796763681,40.896364281859164,68.2571243839727,72.10120344024197,21.420350597688163,93.06724508543407,80.7950783196847
./data/data_interfacesample_database.sqlite,sample_database,Users,GROUPBY,GROUPBY-AGG-AVG,"SELECT `name`, AVG(`age`) FROM `Users` GROUP BY `name`","For each name, find the avg of age in table Users",5.36377568465831,"SELECT name, AVG(age) AS average_age FROM Users GROUP BY name;",meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.4997789994369328,55.71445620241292,56.32671408618857,70.82112915489046,12.715690292688464,79.98170552792442,61.58458398130225
./data/data_interfacesample_database.sqlite,sample_database,Users,GROUPBY,GROUPBY-AGG-SUM,"SELECT `name`, SUM(`age`) FROM `Users` GROUP BY `name`","For each name, find the sum of age in table Users",11.830206776457349,"SELECT name, SUM(age) FROM Users GROUP BY name;",meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.267606750920859,51.26825466749533,32.58207261005126,67.9437601127115,46.2926283326214,32.13040760380244,46.70261744270539
./data/data_interfacesample_database.sqlite,sample_database,Users,HAVING,HAVING-COUNT,SELECT `name` FROM `Users` GROUP BY `name` HAVING count(*) >= 1,Find all the name that have at least 1 records in table Users,4.517389421233574,SELECT name FROM Users WHERE id IN (SELECT user_id FROM Orders);,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.1564130161125918,32.66367566997612,71.50894761960934,61.449872686190176,64.13422017911266,55.86684696783822,45.53238303121743
./data/data_interfacesample_database.sqlite,sample_database,Users,HAVING,HAVING-COUNT,SELECT `name` FROM `Users` GROUP BY `name` HAVING count(*) <= 1,Find all the name that have at most 1 records in table Users,12.839350473182245,"SELECT name 

FROM Users 

GROUP BY name 

HAVING COUNT(id) <= 1;",meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.0865618227896354,90.59572372580568,75.29185576877144,71.54923110517181,3.684173149594505,98.45458856144023,8.99768224806673
./data/data_interfacesample_database.sqlite,sample_database,Users,HAVING,HAVING-AGG-AVG,SELECT `name` FROM `Users` GROUP BY `name` HAVING AVG(`age`) >= 32.5,List the name which average of age is at least 32.5 in table Users,2.131690536153785,SELECT name FROM Users GROUP BY name HAVING AVG(age) >= 32.5;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.1229904804177961,62.99308693326866,19.65932919533572,4.131518636474574,39.17346027933295,3.910196661459131,7.6357508689331555
./data/data_interfacesample_database.sqlite,sample_database,Users,HAVING,HAVING-AGG-AVG,SELECT `name` FROM `Users` GROUP BY `name` HAVING AVG(`age`) <= 32.5,List the name which average of age is at most 32.5 in table Users,13.30580703826718,SELECT name FROM Users WHERE age <= 32.5;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.3410128741723941,25.760075258449476,21.547349862018393,99.93387954059094,14.144420140522785,86.33247493129446,42.056053546861236
./data/data_interfacesample_database.sqlite,sample_database,Users,HAVING,HAVING-AGG-SUM,SELECT `name` FROM `Users` GROUP BY `name` HAVING SUM(`age`) >= 32.5,List the name which summation of age is at least 32.5 in table Users,7.908543737242639,SELECT name FROM Users WHERE age >= 32.5;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.8250481323134766,42.302403578297955,7.116293948346309,52.684124147199086,44.80352985293157,52.901520098545596,97.20032342273419
./data/data_interfacesample_database.sqlite,sample_database,Users,HAVING,HAVING-AGG-SUM,SELECT `name` FROM `Users` GROUP BY `name` HAVING SUM(`age`) <= 32.5,List the name which summation of age is at most 32.5 in table Users,10.795134219791171,SELECT name FROM Users WHERE age <= 32.5;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.7720599954195775,82.6144228077192,84.3048222599129,6.977923002295572,99.01337360140215,71.02509248691223,0.01854149123111659
./data/data_interfacesample_database.sqlite,sample_database,Users,INNER-JOIN,JOIN-PROJECT-ALL,SELECT * FROM `Users` AS T1 JOIN `Orders` AS T2 ON T1.`id` = T2.`id`,Join all the records from table Users with table Orders on id,2.7170068888886028,"SELECT * 

FROM Users 

LEFT JOIN Orders 

ON Users.id = Orders.id;",meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.6803519652304074,49.95917465187615,5.171572080116538,65.40844261941098,20.239472372404098,97.4542064647622,92.43384798634168
./data/data_interfacesample_database.sqlite,sample_database,Orders,ORDERBY,ORDERBY-SINGLE,SELECT * FROM `Orders` ORDER BY `user_id` ASC,Show all data ordered by user_id in ascending order for the table Orders,2.522958101179288,SELECT * FROM Orders ORDER BY user_id ASC;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.006316000591092,94.13415923545828,15.663226968987743,79.93341906705813,99.25101794325913,50.982083949482494,22.12445728338176
./data/data_interfacesample_database.sqlite,sample_database,Orders,ORDERBY,ORDERBY-SINGLE,SELECT * FROM `Orders` ORDER BY `user_id` DESC,Show all data ordered by user_id in descending order for the table Orders,10.643052314032255,SELECT * FROM Orders ORDER BY user_id DESC;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.2731045571458313,68.19796539591442,95.90891910154494,63.83118622992219,83.00568012760039,31.76093497876743,77.4192394659841
./data/data_interfacesample_database.sqlite,sample_database,Orders,ORDERBY,ORDERBY-SINGLE,SELECT * FROM `Orders` ORDER BY `id` ASC,Show all data ordered by id in ascending order for the table Orders,1.0100646645174984,SELECT * FROM Orders ORDER BY id ASC;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.241688208836742,89.10543653293239,95.52922819572665,44.45447224128587,2.4710383575869965,80.56384131491762,21.20543881346727
./data/data_interfacesample_database.sqlite,sample_database,Orders,ORDERBY,ORDERBY-SINGLE,SELECT * FROM `Orders` ORDER BY `id` DESC,Show all data ordered by id in descending order for the table Orders,6.180638637768491,SELECT * FROM Orders ORDER BY id DESC;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.165089425867646,82.39557657525177,84.19888605330131,42.775112536469095,64.97220087069068,83.79081565512753,52.369107171599225
./data/data_interfacesample_database.sqlite,sample_database,Orders,ORDERBY,ORDERBY-PROJECT,SELECT `total_price` FROM `Orders` ORDER BY `total_price` ASC,Project the total_price ordered in ascending order for the table Orders,12.403811426503895,SELECT total_price FROM Orders ORDER BY total_price ASC;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.7786682433964254,45.16539802349823,47.17861201261528,17.13040043629529,54.755827445456994,99.77520619746005,1.904811687513086
./data/data_interfacesample_database.sqlite,sample_database,Orders,ORDERBY,ORDERBY-PROJECT,SELECT `total_price` FROM `Orders` ORDER BY `total_price` DESC,Project the total_price ordered in descending order for the table Orders,12.361078609930745,SELECT total_price FROM Orders ORDER BY total_price DESC;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.9014178387417527,86.10733881890009,19.79944102750968,14.866228579409901,77.44731216654118,17.320962353126014,52.313961405215146
./data/data_interfacesample_database.sqlite,sample_database,Orders,ORDERBY,ORDERBY-PROJECT,SELECT `id` FROM `Orders` ORDER BY `id` ASC,Project the id ordered in ascending order for the table Orders,13.340417104830873,SELECT id FROM Orders ORDER BY id ASC;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.9510577020075774,40.822116553143985,90.55455668830169,94.52445261728131,88.56751582394877,3.276457591134685,33.47817395792902
./data/data_interfacesample_database.sqlite,sample_database,Orders,ORDERBY,ORDERBY-PROJECT,SELECT `id` FROM `Orders` ORDER BY `id` DESC,Project the id ordered in descending order for the table Orders,1.0951377160670872,SELECT id FROM Orders ORDER BY id DESC;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.7585152995551449,37.622375116192686,67.68279947662134,71.37175882440432,12.766328029943551,16.226553198148196,58.856826106207684
./data/data_interfacesample_database.sqlite,sample_database,Users,ORDERBY,ORDERBY-SINGLE,SELECT * FROM `Users` ORDER BY `age` ASC,Show all data ordered by age in ascending order for the table Users,12.253057754786646,SELECT * FROM Users ORDER BY age ASC;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.3072635859769928,63.375077380310465,95.59522990347087,98.76434167083747,60.02792603912079,57.473280880505094,91.6961127737595
./data/data_interfacesample_database.sqlite,sample_database,Users,ORDERBY,ORDERBY-SINGLE,SELECT * FROM `Users` ORDER BY `age` DESC,Show all data ordered by age in descending order for the table Users,13.599495719725029,SELECT * FROM Users ORDER BY age DESC;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.1135368579796656,50.98961138202169,77.0876770944686,6.852451717051766,33.88259572326733,72.7962566476569,88.78505099641224
./data/data_interfacesample_database.sqlite,sample_database,Users,ORDERBY,ORDERBY-SINGLE,SELECT * FROM `Users` ORDER BY `id` ASC,Show all data ordered by id in ascending order for the table Users,7.368552492133769,SELECT * FROM Users ORDER BY id ASC;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.9597666667945992,54.75134722865771,73.31381758448397,55.12695042798539,42.20495737761988,17.84728036376294,66.16038209626063
./data/data_interfacesample_database.sqlite,sample_database,Users,ORDERBY,ORDERBY-SINGLE,SELECT * FROM `Users` ORDER BY `id` DESC,Show all data ordered by id in descending order for the table Users,3.0590355542694896,SELECT * FROM Users ORDER BY id DESC;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.9471759757606037,49.66114085579125,43.77601839621502,29.06862306606941,12.315244282531845,24.780325705385653,50.95093133031976
./data/data_interfacesample_database.sqlite,sample_database,Users,ORDERBY,ORDERBY-PROJECT,SELECT `id` FROM `Users` ORDER BY `id` ASC,Project the id ordered in ascending order for the table Users,11.531400090720249,SELECT id FROM Users ORDER BY id ASC;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.6537539661719802,29.26728237214682,92.9738566562374,35.690069435033465,48.30879310396684,95.90262589491263,13.591501391758587
./data/data_interfacesample_database.sqlite,sample_database,Users,ORDERBY,ORDERBY-PROJECT,SELECT `id` FROM `Users` ORDER BY `id` DESC,Project the id ordered in descending order for the table Users,3.720709249798918,SELECT id FROM Users ORDER BY id DESC;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.8559368815184204,38.81771258804692,87.2772885321879,69.18851526460834,77.34584145415498,83.4748042049646,60.232509913796825
./data/data_interfacesample_database.sqlite,sample_database,Users,ORDERBY,ORDERBY-PROJECT,SELECT `age` FROM `Users` ORDER BY `age` ASC,Project the age ordered in ascending order for the table Users,8.508835550896656,SELECT age FROM Users ORDER BY age ASC;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.2833492324788665,78.41597018822772,42.39739621990902,30.920360715459005,47.62391569770449,45.466934834168335,48.078870033898
./data/data_interfacesample_database.sqlite,sample_database,Users,ORDERBY,ORDERBY-PROJECT,SELECT `age` FROM `Users` ORDER BY `age` DESC,Project the age ordered in descending order for the table Users,11.52354385392014,SELECT age FROM Users ORDER BY age DESC;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.291631510854256,75.99074258869574,13.775413895948796,1.5744298133819168,3.650213986111961,4.404239623880491,30.31405697500925
./data/data_interfacesample_database.sqlite,sample_database,Orders,PROJECT,SELECT-SINGLE-COL,SELECT `id` FROM `Orders`,Show all id in the table Orders,9.36392910379612,SELECT id FROM Orders;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.504557506245492,78.55299973989767,64.39804625515202,86.70720727328526,54.18323732645403,28.9254876571457,68.36487530897813
./data/data_interfacesample_database.sqlite,sample_database,Orders,PROJECT,SELECT-SINGLE-COL,SELECT `user_id` FROM `Orders`,Show all user_id in the table Orders,3.3417087031354145,SELECT user_id FROM Orders;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.7753696159044411,59.40994526197577,68.91759904843747,40.978980327047424,57.517026583176225,63.81686232885099,94.36273819478696
./data/data_interfacesample_database.sqlite,sample_database,Orders,PROJECT,SELECT-SINGLE-COL,SELECT `total_price` FROM `Orders`,Show all total_price in the table Orders,13.182825277476669,SELECT total_price FROM Orders;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.9834994967259629,18.734347955103082,72.01840650902565,27.561470507903973,66.80042613400433,45.87405149164662,18.34065818570567
./data/data_interfacesample_database.sqlite,sample_database,Orders,PROJECT,SELECT-ALL,SELECT * FROM `Orders`,Show all the rows in the table Orders,8.463391419357068,SELECT * FROM Orders;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.9379107905854303,30.685208408376695,84.89437653663131,68.89377971674597,38.06347896599195,88.76400252450955,16.004004088145006
./data/data_interfacesample_database.sqlite,sample_database,Orders,PROJECT,SELECT-RANDOM-COL,SELECT `user_id` FROM `Orders`,Show all user_id in the table Orders,7.420392078289103,SELECT user_id FROM Orders;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.1426417247001504,41.49116477779534,65.09435021936166,42.134186856889244,7.093326985466108,96.54113255380884,3.1487519848399037
./data/data_interfacesample_database.sqlite,sample_database,Orders,PROJECT,SELECT-RANDOM-COL,"SELECT `total_price`, `user_id` FROM `Orders`","Show all total_price, user_id in the table Orders",9.385403608221457,"SELECT total_price, user_id FROM Orders;",meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.9364369493772084,14.2744726682009,99.89254468743287,99.92045369414964,11.692389978432495,13.00506699602314,39.00786515402578
./data/data_interfacesample_database.sqlite,sample_database,Users,PROJECT,SELECT-SINGLE-COL,SELECT `id` FROM `Users`,Show all id in the table Users,8.568582891438556,SELECT id FROM Users;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.0602850583511023,60.7383870963537,24.0406229990348,77.48957502040864,86.52860487398752,35.68446253040721,10.985972281036972
./data/data_interfacesample_database.sqlite,sample_database,Users,PROJECT,SELECT-SINGLE-COL,SELECT `name` FROM `Users`,Show all name in the table Users,10.692187780398331,SELECT name FROM Users;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.7701983205965002,26.778404301731097,3.3037725144931085,26.451726322421408,90.80623845994658,30.685348317921203,4.52947707060366
./data/data_interfacesample_database.sqlite,sample_database,Users,PROJECT,SELECT-SINGLE-COL,SELECT `age` FROM `Users`,Show all age in the table Users,10.553290433418454,SELECT age FROM Users;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.7655154583504219,35.46438875186876,67.1953598515822,50.95300365893694,58.058013257631956,78.7019906522803,64.7661961602695
./data/data_interfacesample_database.sqlite,sample_database,Users,PROJECT,SELECT-ALL,SELECT * FROM `Users`,Show all the rows in the table Users,11.43838571299233,SELECT * FROM Users;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.7852776365076088,60.45164366272191,87.27274118343587,49.15490778800474,20.32404467813639,87.7123148789283,57.15625071168196
./data/data_interfacesample_database.sqlite,sample_database,Users,PROJECT,SELECT-RANDOM-COL,SELECT `age` FROM `Users`,Show all age in the table Users,0.6087525939319924,SELECT age FROM Users;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.9803277203567422,45.71499984934936,29.044330478503745,39.67224769603194,10.595734887714203,63.717883514589765,70.05401770793881
./data/data_interfacesample_database.sqlite,sample_database,Users,PROJECT,SELECT-RANDOM-COL,"SELECT `id`, `age` FROM `Users`","Show all id, age in the table Users",1.862015672627232,"SELECT id, age FROM Users;",meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.0899299232222257,59.44303344041011,21.117562585387397,11.168857258954368,99.64810168958667,48.675051999885056,54.005587074489334
./data/data_interfacesample_database.sqlite,sample_database,Orders,SELECT,WHERE-NUM,SELECT * FROM `Orders` WHERE `total_price` > 89.99,Show the data of the table Orders where total_price is greater than 89.99,10.163740368030945,SELECT * FROM Orders WHERE total_price > 89.99;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.8588695553349636,59.69490072198775,85.29120923425478,2.830739598937082,3.7302799457138325,97.42150719336318,17.362338351093566
./data/data_interfacesample_database.sqlite,sample_database,Users,SELECT,WHERE-CAT,SELECT * FROM `Users` WHERE `name` == 'Bob',Show the data of the table Users where name is equal to Bob,11.796370859491834,SELECT * FROM Users WHERE name = 'Bob';,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.7569001168027951,48.546689486515994,95.0585721523245,7.998509636050988,90.97214081206695,75.86636496127032,1.9824057593180067
./data/data_interfacesample_database.sqlite,sample_database,Users,SELECT,WHERE-CAT,SELECT * FROM `Users` WHERE `name` != 'Bob',Show the data of the table Users where name is different from Bob,6.385712081017332,SELECT * FROM Users WHERE name != 'Bob';,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.807255569798867,23.37686675830288,94.52774204603371,43.68285844028493,81.78456639561331,26.174401419488646,90.00593873029277
./data/data_interfacesample_database.sqlite,sample_database,Users,SELECT,WHERE-CAT,SELECT * FROM `Users` WHERE `name` != 'Bob',Show the data of the table Users where name not equal to Bob,3.1498561656161743,SELECT * FROM Users WHERE name != 'Bob';,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.916700496630942,41.60500086880656,75.31487901679645,68.72666753057857,89.04638919574165,51.770824791934146,20.547790147516174
./data/data_interfacesample_database.sqlite,sample_database,Users,SELECT,WHERE-NUM,SELECT * FROM `Users` WHERE `age` > 25,Show the data of the table Users where age is greater than 25,1.810260454083734,SELECT * FROM Users WHERE age > 25;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.4810156279542204,99.14771959258869,80.86383803972976,67.06278160022168,36.567469890451164,69.72954359891939,94.2993956247462
./data/data_interfacesample_database.sqlite,sample_database,Users,SELECT,WHERE-NUM,SELECT * FROM `Users` WHERE `age` < 30,Show the data of the table Users where age is less than 30,13.374321179487943,SELECT * FROM Users WHERE age < 30;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.1212808518848603,64.61281489319089,78.43643894492807,5.527265006834359,13.038695715209913,63.260998750595675,94.11167601942543
./data/data_interfacesample_database.sqlite,sample_database,Orders,SIMPLE-AGG,SIMPLE-AGG-MAX,SELECT MAX(`total_price`) FROM `Orders`,Find the maximum total_price for the table Orders,12.901464764576275,SELECT MAX(total_price) FROM Orders;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.0387134876885344,75.76566291286905,74.83804861117984,68.60383013402763,69.45820774498401,88.73378492764057,10.708123398546132
./data/data_interfacesample_database.sqlite,sample_database,Orders,SIMPLE-AGG,SIMPLE-AGG-MIN,SELECT MIN(`total_price`) FROM `Orders`,Find the minimum total_price for the table Orders,2.477714435359561,SELECT MIN(total_price) FROM Orders;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.2059835144394744,6.095606259940367,8.801051901989299,5.752530128419309,93.51739395455185,28.819987573262097,10.352508445674857
./data/data_interfacesample_database.sqlite,sample_database,Orders,SIMPLE-AGG,SIMPLE-AGG-AVG,SELECT AVG(`total_price`) FROM `Orders`,Find the average total_price for the table Orders,12.458893139420194,SELECT AVG(total_price) FROM Orders;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.3740578827018421,83.53154357535794,93.28406481117979,13.636737636947661,18.222565245646184,35.02367265719704,49.0506825229989
./data/data_interfacesample_database.sqlite,sample_database,Users,SIMPLE-AGG,SIMPLE-AGG-COUNT-DISTINCT,SELECT COUNT(DISTINCT `name`) FROM `Users`,How many different name are in table Users?,1.0575156712872718,SELECT COUNT(DISTINCT name) FROM Users;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.4200310180615443,60.613551172774805,77.60872738866203,23.824312666331483,90.47371892835052,89.95794594550078,7.180671181871812
./data/data_interfacesample_database.sqlite,sample_database,Users,SIMPLE-AGG,SIMPLE-AGG-MAX,SELECT MAX(`age`) FROM `Users`,Find the maximum age for the table Users,4.518016373995901,SELECT MAX(age) FROM Users;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.67057928477531,33.00876853288284,76.69948315057566,61.56913004643242,81.92607928248744,6.7174349896950485,49.12904275519462
./data/data_interfacesample_database.sqlite,sample_database,Users,SIMPLE-AGG,SIMPLE-AGG-MIN,SELECT MIN(`age`) FROM `Users`,Find the minimum age for the table Users,10.510938402381967,SELECT MIN(age) FROM Users;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,1.0219861762081166,64.43185933634332,31.074324379076245,22.92344903574025,50.61542140339761,32.21607161052614,98.04948537669237
./data/data_interfacesample_database.sqlite,sample_database,Users,SIMPLE-AGG,SIMPLE-AGG-AVG,SELECT AVG(`age`) FROM `Users`,Find the average age for the table Users,5.080834375057066,SELECT AVG(age) FROM Users;,meta-llama/Llama-3.3-70B-Instruct-Turbo-Free,0.8910479241441343,56.361599398967954,22.409063821771657,29.04170810645318,27.404002761201763,88.16003909644702,4.157607520070439
./data/data_interfacesample_database.sqlite,sample_database,Users,DISTINCT,DISTINCT-SINGLE,SELECT DISTINCT `name` FROM `Users`,Show the different name in the table Users,0.9556666986517357,SELECT DISTINCT name FROM Users;,NewModel,0.9981600351868724,0.5502037259672963,0.27427672433852734,0.5861587987242269,0.3957733737644935,0.49576575353294805,0.8491253755654793
./data/data_interfacesample_database.sqlite,sample_database,Users,GROUPBY,GROUPBY-COUNT,"SELECT `name`, COUNT(*) FROM `Users` GROUP BY `name`","For each name, count the number of rows in table Users",0.8557549024413847,"SELECT name, COUNT(*) as count FROM Users GROUP BY name;",NewModel,0.3129489720339731,0.9509700715065723,0.12448202915778894,0.3880198152954064,0.7946655227503492,0.08462846514004807,0.5351782729550395
./data/data_interfacesample_database.sqlite,sample_database,Users,GROUPBY,GROUPBY-AGG-MIN,"SELECT `name`, MIN(`age`) FROM `Users` GROUP BY `name`","For each name, find the min of age in table Users",0.88504702745627,"SELECT name, MIN(age) FROM Users GROUP BY name;",NewModel,0.401487364218175,0.0569554918033659,0.11392681025259177,0.5826275796758986,0.6374769013013513,0.21898095584624688,0.2327926070977071
./data/data_interfacesample_database.sqlite,sample_database,Users,GROUPBY,GROUPBY-AGG-MAX,"SELECT `name`, MAX(`age`) FROM `Users` GROUP BY `name`","For each name, find the max of age in table Users",0.9475536554606675,"SELECT name, MAX(age) FROM Users GROUP BY name;",NewModel,0.5816244618494204,0.6420042610125175,0.35793956945301786,0.1974326447470528,0.8101518036775006,0.02099530091995827,0.2691988460394088
./data/data_interfacesample_database.sqlite,sample_database,Users,GROUPBY,GROUPBY-AGG-AVG,"SELECT `name`, AVG(`age`) FROM `Users` GROUP BY `name`","For each name, find the avg of age in table Users",0.39752076872920317,"SELECT name, AVG(age) AS average_age FROM Users GROUP BY name;",NewModel,0.18370849534011013,0.6918645752237954,0.12197478443262044,0.5541534073192275,0.9883028303000478,0.14624228053742727,0.43332954009278224
./data/data_interfacesample_database.sqlite,sample_database,Users,GROUPBY,GROUPBY-AGG-SUM,"SELECT `name`, SUM(`age`) FROM `Users` GROUP BY `name`","For each name, find the sum of age in table Users",0.4902176635363189,"SELECT name, SUM(age) FROM Users GROUP BY name;",NewModel,0.31533159718579873,0.6739658356865351,0.26604861195994445,0.7270304716779122,0.33771841143103487,0.9625267906893678,0.4933277285168388
./data/data_interfacesample_database.sqlite,sample_database,Users,HAVING,HAVING-COUNT,SELECT `name` FROM `Users` GROUP BY `name` HAVING count(*) >= 1,Find all the name that have at least 1 records in table Users,0.06306925924206674,SELECT name FROM Users WHERE id IN (SELECT user_id FROM Orders);,NewModel,0.8736851651852576,0.23540838084435523,0.8606069187450097,0.3919030892656544,0.9333717001486576,0.6012226383877857,0.4125743032602761
./data/data_interfacesample_database.sqlite,sample_database,Users,HAVING,HAVING-COUNT,SELECT `name` FROM `Users` GROUP BY `name` HAVING count(*) <= 1,Find all the name that have at most 1 records in table Users,0.1943875795558081,"SELECT name 

FROM Users 

GROUP BY name 

HAVING COUNT(id) <= 1;",NewModel,0.3792348366473238,0.2860926671853652,0.6647528821993648,0.32131475094402395,0.8680275617869154,0.6090998996688405,0.4491171878734149
./data/data_interfacesample_database.sqlite,sample_database,Users,HAVING,HAVING-AGG-AVG,SELECT `name` FROM `Users` GROUP BY `name` HAVING AVG(`age`) >= 32.5,List the name which average of age is at least 32.5 in table Users,0.40774027849038663,SELECT name FROM Users GROUP BY name HAVING AVG(age) >= 32.5;,NewModel,0.2815565854866591,0.454039654821338,0.6060847016021534,0.673854814996211,0.11524270499283762,0.24430680841030128,0.5269806615721849
./data/data_interfacesample_database.sqlite,sample_database,Users,HAVING,HAVING-AGG-AVG,SELECT `name` FROM `Users` GROUP BY `name` HAVING AVG(`age`) <= 32.5,List the name which average of age is at most 32.5 in table Users,0.5715626314431633,SELECT name FROM Users WHERE age <= 32.5;,NewModel,0.47926490744539796,0.6458278475800591,0.7860398287074756,0.23718547202308782,0.18735923358406625,0.5705973868884555,0.7163196807941881
./data/data_interfacesample_database.sqlite,sample_database,Users,HAVING,HAVING-AGG-SUM,SELECT `name` FROM `Users` GROUP BY `name` HAVING SUM(`age`) >= 32.5,List the name which summation of age is at least 32.5 in table Users,0.7330806120230571,SELECT name FROM Users WHERE age >= 32.5;,NewModel,0.19629144729640702,0.8073440395598999,0.5719982402681261,0.12784953179524017,0.35933135875776634,0.6900933958257314,0.39927011921092537
./data/data_interfacesample_database.sqlite,sample_database,Users,HAVING,HAVING-AGG-SUM,SELECT `name` FROM `Users` GROUP BY `name` HAVING SUM(`age`) <= 32.5,List the name which summation of age is at most 32.5 in table Users,0.2165592073189696,SELECT name FROM Users WHERE age <= 32.5;,NewModel,0.11088010415118366,0.9330566890723694,0.3633672452684371,0.13935450773365665,0.9277231067664645,0.45657355393027943,0.37071526930648124
./data/data_interfacesample_database.sqlite,sample_database,Users,INNER-JOIN,JOIN-PROJECT-ALL,SELECT * FROM `Users` AS T1 JOIN `Orders` AS T2 ON T1.`id` = T2.`id`,Join all the records from table Users with table Orders on id,0.5704914426530544,"SELECT * 

FROM Users 

LEFT JOIN Orders 

ON Users.id = Orders.id;",NewModel,0.0501836785939872,0.5325592847649873,0.2048974028136542,0.47196177237451975,0.15267868454487277,0.568697395508903,0.3217702317139861
./data/data_interfacesample_database.sqlite,sample_database,Orders,ORDERBY,ORDERBY-SINGLE,SELECT * FROM `Orders` ORDER BY `user_id` ASC,Show all data ordered by user_id in ascending order for the table Orders,0.278865994154998,SELECT * FROM Orders ORDER BY user_id ASC;,NewModel,0.9563198202044954,0.7744579408843959,0.041247313022846566,0.5902237372856071,0.37271759558491024,0.7303418664587499,0.4796795516439839
./data/data_interfacesample_database.sqlite,sample_database,Orders,ORDERBY,ORDERBY-SINGLE,SELECT * FROM `Orders` ORDER BY `user_id` DESC,Show all data ordered by user_id in descending order for the table Orders,0.6604434574063923,SELECT * FROM Orders ORDER BY user_id DESC;,NewModel,0.032241128950173725,0.12256627271415754,0.6710381065899956,0.1273461572639688,0.4541955903731818,0.8862313231269879,0.5667119832906049
./data/data_interfacesample_database.sqlite,sample_database,Orders,ORDERBY,ORDERBY-SINGLE,SELECT * FROM `Orders` ORDER BY `id` ASC,Show all data ordered by id in ascending order for the table Orders,0.9017797452122915,SELECT * FROM Orders ORDER BY id ASC;,NewModel,0.08159303733137135,0.03518224024015548,0.7080387479581897,0.6534927752675386,0.2479528578695116,0.02874427553602099,0.8177182713204285
./data/data_interfacesample_database.sqlite,sample_database,Orders,ORDERBY,ORDERBY-SINGLE,SELECT * FROM `Orders` ORDER BY `id` DESC,Show all data ordered by id in descending order for the table Orders,0.4354621170094707,SELECT * FROM Orders ORDER BY id DESC;,NewModel,0.29313807300344785,0.8051266417850708,0.5595756612201096,0.16121550034231957,0.229919074938143,0.2309692629987966,0.7891257353999673
./data/data_interfacesample_database.sqlite,sample_database,Orders,ORDERBY,ORDERBY-PROJECT,SELECT `total_price` FROM `Orders` ORDER BY `total_price` ASC,Project the total_price ordered in ascending order for the table Orders,0.9589094109945834,SELECT total_price FROM Orders ORDER BY total_price ASC;,NewModel,0.5247873549493179,0.9646573053649401,0.575649736573643,0.09033580887540671,0.4037661998313611,0.6160579793454436,0.07957370227953253
./data/data_interfacesample_database.sqlite,sample_database,Orders,ORDERBY,ORDERBY-PROJECT,SELECT `total_price` FROM `Orders` ORDER BY `total_price` DESC,Project the total_price ordered in descending order for the table Orders,0.04258268469494275,SELECT total_price FROM Orders ORDER BY total_price DESC;,NewModel,0.09206790594339709,0.1720192733188589,0.13705923858221414,0.3959785258868469,0.8774541620590287,0.39592164515539097,0.34250524931214454
./data/data_interfacesample_database.sqlite,sample_database,Orders,ORDERBY,ORDERBY-PROJECT,SELECT `id` FROM `Orders` ORDER BY `id` ASC,Project the id ordered in ascending order for the table Orders,0.008573337310371132,SELECT id FROM Orders ORDER BY id ASC;,NewModel,0.8081131577121662,0.36797235051007116,0.7194576371612637,0.7908874904409738,0.7390360515967013,0.7435772709261024,0.4602232003540717
./data/data_interfacesample_database.sqlite,sample_database,Orders,ORDERBY,ORDERBY-PROJECT,SELECT `id` FROM `Orders` ORDER BY `id` DESC,Project the id ordered in descending order for the table Orders,0.14977421936641533,SELECT id FROM Orders ORDER BY id DESC;,NewModel,0.7156822170166206,0.64750561441552,0.7905612856708393,0.5420266838606641,0.6995725079116446,0.5172612526626518,0.26632307869027017
./data/data_interfacesample_database.sqlite,sample_database,Users,ORDERBY,ORDERBY-SINGLE,SELECT * FROM `Users` ORDER BY `age` ASC,Show all data ordered by age in ascending order for the table Users,0.660899714485416,SELECT * FROM Users ORDER BY age ASC;,NewModel,0.6619458306144352,0.2482083974273307,0.829241829123287,0.0229743608281624,0.8173905276017891,0.9677913992984823,0.5418888749100143
./data/data_interfacesample_database.sqlite,sample_database,Users,ORDERBY,ORDERBY-SINGLE,SELECT * FROM `Users` ORDER BY `age` DESC,Show all data ordered by age in descending order for the table Users,0.7821544781633765,SELECT * FROM Users ORDER BY age DESC;,NewModel,0.3000770041953844,0.5050533046830624,0.9031841415533481,0.7845747809682787,0.7638393612850789,0.5253981212161009,0.029919113971825673
./data/data_interfacesample_database.sqlite,sample_database,Users,ORDERBY,ORDERBY-SINGLE,SELECT * FROM `Users` ORDER BY `id` ASC,Show all data ordered by id in ascending order for the table Users,0.9521900388126059,SELECT * FROM Users ORDER BY id ASC;,NewModel,0.5968252511408427,0.7374143786884594,0.7711901258152806,0.5179165972109847,0.16582774269553469,0.37646506512080624,0.09923327514049096
./data/data_interfacesample_database.sqlite,sample_database,Users,ORDERBY,ORDERBY-SINGLE,SELECT * FROM `Users` ORDER BY `id` DESC,Show all data ordered by id in descending order for the table Users,0.9180818562534713,SELECT * FROM Users ORDER BY id DESC;,NewModel,0.11266788624250157,0.33137501111981826,0.8307747559380806,0.19862437231340502,0.08984230649964786,0.4513756932848767,0.4212396336678057
./data/data_interfacesample_database.sqlite,sample_database,Users,ORDERBY,ORDERBY-PROJECT,SELECT `id` FROM `Users` ORDER BY `id` ASC,Project the id ordered in ascending order for the table Users,0.9127618840749614,SELECT id FROM Users ORDER BY id ASC;,NewModel,0.20633757062415192,0.2484114185406614,0.08798792712078829,0.4085674472573003,0.12256470428038424,0.8588996815468853,0.22806545733185757
./data/data_interfacesample_database.sqlite,sample_database,Users,ORDERBY,ORDERBY-PROJECT,SELECT `id` FROM `Users` ORDER BY `id` DESC,Project the id ordered in descending order for the table Users,0.4247073075272222,SELECT id FROM Users ORDER BY id DESC;,NewModel,0.3398853980662798,0.8300268007353545,0.5597619630942642,0.7063547899333873,0.7860078099208918,0.6621200074867752,0.5861346228393406
./data/data_interfacesample_database.sqlite,sample_database,Users,ORDERBY,ORDERBY-PROJECT,SELECT `age` FROM `Users` ORDER BY `age` ASC,Project the age ordered in ascending order for the table Users,0.3307059649128775,SELECT age FROM Users ORDER BY age ASC;,NewModel,0.5438743712086053,0.7227310894677107,0.09026747802232915,0.1230261157340079,0.7357072563280576,0.7852711713790018,0.050831393474856656
./data/data_interfacesample_database.sqlite,sample_database,Users,ORDERBY,ORDERBY-PROJECT,SELECT `age` FROM `Users` ORDER BY `age` DESC,Project the age ordered in descending order for the table Users,0.9064871018688881,SELECT age FROM Users ORDER BY age DESC;,NewModel,0.6983069169894911,0.8491192287397364,0.3522941263638061,0.17391944258358238,0.033350827098299285,0.668064811076183,0.8485261787749809
./data/data_interfacesample_database.sqlite,sample_database,Orders,PROJECT,SELECT-SINGLE-COL,SELECT `id` FROM `Orders`,Show all id in the table Orders,0.7775837375385644,SELECT id FROM Orders;,NewModel,0.4311135151256943,0.5524495181483081,0.9937306913307339,0.16336235772730956,0.1426463258512186,0.7268588144329513,0.9785499552767867
./data/data_interfacesample_database.sqlite,sample_database,Orders,PROJECT,SELECT-SINGLE-COL,SELECT `user_id` FROM `Orders`,Show all user_id in the table Orders,0.9868925784137712,SELECT user_id FROM Orders;,NewModel,0.873035021812049,0.021965732082769085,0.298057545427472,0.6140051451130434,0.4836847091788702,0.09297041270292283,0.7976601322707625
./data/data_interfacesample_database.sqlite,sample_database,Orders,PROJECT,SELECT-SINGLE-COL,SELECT `total_price` FROM `Orders`,Show all total_price in the table Orders,0.2807333597512536,SELECT total_price FROM Orders;,NewModel,0.8267447908126915,0.7206299250116422,0.22251683585064763,0.406420593341304,0.6217260796642727,0.4286614591219534,0.22200957697664803
./data/data_interfacesample_database.sqlite,sample_database,Orders,PROJECT,SELECT-ALL,SELECT * FROM `Orders`,Show all the rows in the table Orders,0.8291975295965665,SELECT * FROM Orders;,NewModel,0.29515211897400306,0.3598442024811659,0.8126503969790538,0.532139847891915,0.7523480795844607,0.22844130321431355,0.751864451722362
./data/data_interfacesample_database.sqlite,sample_database,Orders,PROJECT,SELECT-RANDOM-COL,SELECT `user_id` FROM `Orders`,Show all user_id in the table Orders,0.7299520348673042,SELECT user_id FROM Orders;,NewModel,0.41519674520046324,0.43640382821301293,0.7997821252247959,0.07261252491647618,0.16696616915907647,0.529494543304592,0.5589230892668204
./data/data_interfacesample_database.sqlite,sample_database,Orders,PROJECT,SELECT-RANDOM-COL,"SELECT `total_price`, `user_id` FROM `Orders`","Show all total_price, user_id in the table Orders",0.9938079077306171,"SELECT total_price, user_id FROM Orders;",NewModel,0.7747152582486009,0.5307733487499979,0.9725871131703443,0.29252577533887336,0.18332273448947922,0.9186182123988025,0.40567255374554456
./data/data_interfacesample_database.sqlite,sample_database,Users,PROJECT,SELECT-SINGLE-COL,SELECT `id` FROM `Users`,Show all id in the table Users,0.06669313219918516,SELECT id FROM Users;,NewModel,0.4759867615450011,0.8304931213710312,0.02609179480634205,0.2610549802152866,0.3608218336873812,0.5812958139026717,0.5280504373641385
./data/data_interfacesample_database.sqlite,sample_database,Users,PROJECT,SELECT-SINGLE-COL,SELECT `name` FROM `Users`,Show all name in the table Users,0.478719076463753,SELECT name FROM Users;,NewModel,0.7581212959144349,0.22148432643092386,0.6172376461719953,0.4128513950993298,0.025130308107317867,0.9615648022949232,0.27440671310994924
./data/data_interfacesample_database.sqlite,sample_database,Users,PROJECT,SELECT-SINGLE-COL,SELECT `age` FROM `Users`,Show all age in the table Users,0.4720369504261066,SELECT age FROM Users;,NewModel,0.6119228265311367,0.6851940810985485,0.631737163155014,0.5719821151373359,0.9126093288287827,0.30804034143485426,0.5161082643984324
./data/data_interfacesample_database.sqlite,sample_database,Users,PROJECT,SELECT-ALL,SELECT * FROM `Users`,Show all the rows in the table Users,0.7201176525560482,SELECT * FROM Users;,NewModel,0.436156205888509,0.43503337005713594,0.688467107016853,0.7391543141517495,0.688477460730715,0.6538756723792174,0.5898591640661749
./data/data_interfacesample_database.sqlite,sample_database,Users,PROJECT,SELECT-RANDOM-COL,SELECT `age` FROM `Users`,Show all age in the table Users,0.4723935968060321,SELECT age FROM Users;,NewModel,0.1314988322397055,0.5543022779009348,0.7225610854412507,0.4745019046712402,0.7980831366297768,0.6130529447405916,0.9131514820044359
./data/data_interfacesample_database.sqlite,sample_database,Users,PROJECT,SELECT-RANDOM-COL,"SELECT `id`, `age` FROM `Users`","Show all id, age in the table Users",0.5902507404063255,"SELECT id, age FROM Users;",NewModel,0.6487114801779699,0.7180660206865089,0.11007748245916937,0.1332202862900469,0.3480107411970238,0.5072492187854863,0.29508364378560026
./data/data_interfacesample_database.sqlite,sample_database,Orders,SELECT,WHERE-NUM,SELECT * FROM `Orders` WHERE `total_price` > 89.99,Show the data of the table Orders where total_price is greater than 89.99,0.9638562388581496,SELECT * FROM Orders WHERE total_price > 89.99;,NewModel,0.691243363787116,0.7702745705943288,0.7957184890189206,0.07113844362735378,0.8032864454726795,0.5513976408735282,0.43157786269779486
./data/data_interfacesample_database.sqlite,sample_database,Users,SELECT,WHERE-CAT,SELECT * FROM `Users` WHERE `name` == 'Bob',Show the data of the table Users where name is equal to Bob,0.977030029699578,SELECT * FROM Users WHERE name = 'Bob';,NewModel,0.15973569496015405,0.5281893170007779,0.7147517325582472,0.07814247036704047,0.040612033235208456,0.7543597069240965,0.18905781796726118
./data/data_interfacesample_database.sqlite,sample_database,Users,SELECT,WHERE-CAT,SELECT * FROM `Users` WHERE `name` != 'Bob',Show the data of the table Users where name is different from Bob,0.6065206145907959,SELECT * FROM Users WHERE name != 'Bob';,NewModel,0.21986264400427447,0.3268890199435911,0.4429909066452201,0.9976245316808191,0.672847528914969,0.11196981953280549,0.5234164940386432
./data/data_interfacesample_database.sqlite,sample_database,Users,SELECT,WHERE-CAT,SELECT * FROM `Users` WHERE `name` != 'Bob',Show the data of the table Users where name not equal to Bob,0.7520453869757838,SELECT * FROM Users WHERE name != 'Bob';,NewModel,0.668073815998079,0.6177770734268917,0.012585018339223986,0.186705699452261,0.6000965948109745,0.49876988320484517,0.5605768280208262
./data/data_interfacesample_database.sqlite,sample_database,Users,SELECT,WHERE-NUM,SELECT * FROM `Users` WHERE `age` > 25,Show the data of the table Users where age is greater than 25,0.10526870666520727,SELECT * FROM Users WHERE age > 25;,NewModel,0.25128969592520944,0.23931443538186326,0.5186399724271301,0.6860547993166662,0.9328085739410629,0.5298600406615049,0.036717517871660665
./data/data_interfacesample_database.sqlite,sample_database,Users,SELECT,WHERE-NUM,SELECT * FROM `Users` WHERE `age` < 30,Show the data of the table Users where age is less than 30,0.2099678603461277,SELECT * FROM Users WHERE age < 30;,NewModel,0.6118474108511156,0.04368399883557639,0.6991210355676479,0.7056179074500974,0.19188903382353562,0.7555427778144183,0.08531235143888694
./data/data_interfacesample_database.sqlite,sample_database,Orders,SIMPLE-AGG,SIMPLE-AGG-MAX,SELECT MAX(`total_price`) FROM `Orders`,Find the maximum total_price for the table Orders,0.5119066014949895,SELECT MAX(total_price) FROM Orders;,NewModel,0.5459951342168295,0.553153858883161,0.5716156601295104,0.08236143860107525,0.4228636881094071,0.8146993559386886,0.8339941145744233
./data/data_interfacesample_database.sqlite,sample_database,Orders,SIMPLE-AGG,SIMPLE-AGG-MIN,SELECT MIN(`total_price`) FROM `Orders`,Find the minimum total_price for the table Orders,0.07835672663479643,SELECT MIN(total_price) FROM Orders;,NewModel,0.07928292702626505,0.5807443080067705,0.061759237300610614,0.41259540250337967,0.2499751290917288,0.007816185255761665,0.30807226229616225
./data/data_interfacesample_database.sqlite,sample_database,Orders,SIMPLE-AGG,SIMPLE-AGG-AVG,SELECT AVG(`total_price`) FROM `Orders`,Find the average total_price for the table Orders,0.20948304056792155,SELECT AVG(total_price) FROM Orders;,NewModel,0.8685733538801839,0.5233716725372487,0.056883944046449586,0.6618757244523856,0.9683046134396398,0.9747936017851515,0.5478019103733008
./data/data_interfacesample_database.sqlite,sample_database,Users,SIMPLE-AGG,SIMPLE-AGG-COUNT-DISTINCT,SELECT COUNT(DISTINCT `name`) FROM `Users`,How many different name are in table Users?,0.5369242685323222,SELECT COUNT(DISTINCT name) FROM Users;,NewModel,0.46623599694329376,0.3845486968761834,0.9969956472882681,0.862127336773108,0.7703600197379286,0.3237716453803775,0.631672291106979
./data/data_interfacesample_database.sqlite,sample_database,Users,SIMPLE-AGG,SIMPLE-AGG-MAX,SELECT MAX(`age`) FROM `Users`,Find the maximum age for the table Users,0.4647160186857948,SELECT MAX(age) FROM Users;,NewModel,0.5229789432396821,0.39491821923917614,0.9680027909298999,0.981660879341165,0.49866785326371676,0.8642870809481559,0.20341433027972322
./data/data_interfacesample_database.sqlite,sample_database,Users,SIMPLE-AGG,SIMPLE-AGG-MIN,SELECT MIN(`age`) FROM `Users`,Find the minimum age for the table Users,0.2631910393464666,SELECT MIN(age) FROM Users;,NewModel,0.3961292817195322,0.16943676678180497,0.936311043694245,0.6269199468804976,0.16661950448632312,0.9843529832818397,0.32530444359947364
./data/data_interfacesample_database.sqlite,sample_database,Users,SIMPLE-AGG,SIMPLE-AGG-AVG,SELECT AVG(`age`) FROM `Users`,Find the average age for the table Users,0.38260571891973916,SELECT AVG(age) FROM Users;,NewModel,0.3563371683255103,0.8859280101501458,0.3970475284510404,0.03930700311952329,0.32190800505777406,0.7869871612375644,0.09525421672566226