Spaces:
Runtime error
Runtime error
<html><head> | |
<style> | |
body { font-family: Arial, sans-serif; margin: 20px; } | |
h1 { text-align: center; } | |
.cot-title { color: blue; } | |
.pos-title { color: green; } | |
h2 { color: black; text-align: left; } | |
h3 { color: black; text-align: left; } | |
h4 { color: darkslategray; } | |
table { width: 100%; border-collapse: collapse; margin: 20px 0; } | |
table, th, td { border: 1px solid #ddd; padding: 8px; } | |
th { background-color: #f2f2f2; } | |
tr:nth-child(even) { background-color: #f9f9f9; } | |
.highlight { background-color: #ffffcc; } | |
.true { color: green; } | |
.false { color: red; } | |
.highlighted-cell { background-color: yellow; cursor: pointer; } | |
.step-title { background-color: #f1f1f1; color: #444; padding: 10px; margin: 10px 0; font-size: 18px; border-left: 4px solid #888; } | |
.step { display: block; } | |
.sql-command { background-color: #f0f0f0; padding: 10px; border-left: 4px solid #4CAF50; font-family: monospace; white-space: pre-wrap; } | |
</style> | |
</head><body> | |
<hr> | |
<h3><span>Statement:</span> the detroit pistons won by over ten points in four games during this period of their 2010 - 2011 season</h3> | |
<h3>Input Table: 2010 - 11 detroit pistons season</h3> | |
<div class="step"> | |
<table> | |
<tr><td>game</td><td>date</td><td>team</td><td>score</td><td>high_points</td><td>high_rebounds</td><td>high_assists</td><td>location_attendance</td><td>record</td></tr><tr><td>62</td><td>9999-03-01</td><td>milwaukee</td><td>l 90 - 92 (ot)</td><td>rodney stuckey (25)</td><td>greg monroe , charlie villanueva (9)</td><td>rodney stuckey (5)</td><td>bradley center 11364</td><td>22 - 40</td></tr><tr><td>63</td><td>9999-03-02</td><td>minnesota</td><td>l 105 - 116 (ot)</td><td>austin daye (22)</td><td>greg monroe (11)</td><td>rodney stuckey (10)</td><td>the palace of auburn hills 13122</td><td>22 - 41</td></tr><tr><td>64</td><td>9999-03-06</td><td>washington</td><td>w 113 - 102 (ot)</td><td>tayshaun prince (20)</td><td>greg monroe , rodney stuckey (7)</td><td>rodney stuckey (9)</td><td>the palace of auburn hills 17506</td><td>23 - 41</td></tr><tr><td>65</td><td>9999-03-09</td><td>san antonio</td><td>l 104 - 111 (ot)</td><td>richard hamilton (20)</td><td>greg monroe (10)</td><td>tracy mcgrady (9)</td><td>at&t center 18581</td><td>23 - 42</td></tr><tr><td>66</td><td>9999-03-11</td><td>oklahoma city</td><td>l 94 - 104 (ot)</td><td>richard hamilton (20)</td><td>greg monroe (10)</td><td>greg monroe , rodney stuckey (6)</td><td>oklahoma city arena 18203</td><td>23 - 43</td></tr><tr><td>67</td><td>9999-03-12</td><td>denver</td><td>l 101 - 131 (ot)</td><td>chris wilcox (21)</td><td>austin daye , ben gordon , greg monroe (6)</td><td>will bynum (10)</td><td>pepsi center 19155</td><td>23 - 44</td></tr><tr><td>68</td><td>9999-03-16</td><td>toronto</td><td>w 107 - 93 (ot)</td><td>richard hamilton (24)</td><td>greg monroe (10)</td><td>rodney stuckey (14)</td><td>the palace of auburn hills 15166</td><td>24 - 44</td></tr><tr><td>69</td><td>9999-03-18</td><td>new york</td><td>w 99 - 95 (ot)</td><td>tayshaun prince (16)</td><td>chris wilcox (12)</td><td>will bynum (5)</td><td>the palace of auburn hills 22076</td><td>25 - 44</td></tr><tr><td>70</td><td>9999-03-20</td><td>atlanta</td><td>l 96 - 104 (ot)</td><td>rodney stuckey (22)</td><td>greg monroe (10)</td><td>rodney stuckey (8)</td><td>philips arena 17580</td><td>25 - 45</td></tr><tr><td>71</td><td>9999-03-23</td><td>miami</td><td>l 94 - 100 (ot)</td><td>richard hamilton (27)</td><td>greg monroe (12)</td><td>rodney stuckey (6)</td><td>the palace of auburn hills 22076</td><td>25 - 46</td></tr><tr><td>72</td><td>9999-03-25</td><td>cleveland</td><td>l 91 - 97 (ot)</td><td>richard hamilton , tayshaun prince (15)</td><td>chris wilcox , greg monroe (8)</td><td>rodney stuckey (4)</td><td>quicken loans arena 19907</td><td>25 - 47</td></tr><tr><td>73</td><td>9999-03-26</td><td>indiana</td><td>w 100 - 88 (ot)</td><td>richard hamilton (23)</td><td>greg monroe (13)</td><td>richard hamilton , rodney stuckey (6)</td><td>the palace of auburn hills 19216</td><td>26 - 47</td></tr> | |
</table> | |
</div> | |
<h3>SQL Command:</h3> | |
<div class="sql-command">SELECT | |
CASE | |
WHEN COUNT(*) >= 4 THEN 'TRUE' | |
ELSE 'FALSE' | |
END | |
FROM table_sql | |
WHERE score LIKE 'w%' | |
AND CAST(SUBSTR(score, INSTR(score, ' ') + 1, INSTR(score, '-') - INSTR(score, ' ') - 1) AS INTEGER) > 10;</div> | |
</body></html> | |