question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is the Engine used before 1983?
CREATE TABLE table_name_84 (engine VARCHAR, year INTEGER)
SELECT engine FROM table_name_84 WHERE year < 1983
What opponent played on 07-09-2012?
CREATE TABLE table_name_26 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_26 WHERE date = "07-09-2012"
What's the average Top-25, that has an Events that's smaller than 12, and has a Top-5 that is larger than 0?
CREATE TABLE table_name_60 (top_25 INTEGER, events VARCHAR, top_5 VARCHAR)
SELECT AVG(top_25) FROM table_name_60 WHERE events < 12 AND top_5 > 0
What's the average Played for a draw of 5 and more than 43 points?
CREATE TABLE table_name_68 (played INTEGER, draw VARCHAR, points VARCHAR)
SELECT AVG(played) FROM table_name_68 WHERE draw = 5 AND points > 43
How many points did the Flyers have against the New York Islanders with a February bigger than 12, and a game smaller than 60?
CREATE TABLE table_name_79 (points VARCHAR, opponent VARCHAR, february VARCHAR, game VARCHAR)
SELECT COUNT(points) FROM table_name_79 WHERE february > 12 AND game < 60 AND opponent = "new york islanders"
who is the the fastest lap with grand prix being european grand prix
CREATE TABLE table_12161822_5 (fastest_lap VARCHAR, grand_prix VARCHAR)
SELECT fastest_lap FROM table_12161822_5 WHERE grand_prix = "European grand_prix"
WHAT IS THE SCORE WITH THE TEAM OF INDIANA?
CREATE TABLE table_name_75 (score VARCHAR, team VARCHAR)
SELECT score FROM table_name_75 WHERE team = "indiana"
Which Location has a Silver of japan?
CREATE TABLE table_name_10 (location VARCHAR, silver VARCHAR)
SELECT location FROM table_name_10 WHERE silver = "japan"
I want the sum of number of seasons in top division for position in 2012-13 of 009 9th and number of seasons in premier league less than 3
CREATE TABLE table_name_48 (number_of_seasons_in_top_division INTEGER, position_in_2012_13 VARCHAR, number_of_seasons_in_the_premier_league VARCHAR)
SELECT SUM(number_of_seasons_in_top_division) FROM table_name_48 WHERE position_in_2012_13 = "009 9th" AND number_of_seasons_in_the_premier_league < 3
What's the original season in 11th place?
CREATE TABLE table_name_15 (original_season VARCHAR, placing VARCHAR)
SELECT original_season FROM table_name_15 WHERE placing = "11th place"
How old was the official with Chinese name 孫明揚?
CREATE TABLE table_2263674_1 (age_at_appointment VARCHAR, chinese_name VARCHAR)
SELECT age_at_appointment FROM table_2263674_1 WHERE chinese_name = "孫明揚"
What is the final score of the game at lambeau field?
CREATE TABLE table_name_21 (final_score VARCHAR, stadium VARCHAR)
SELECT final_score FROM table_name_21 WHERE stadium = "lambeau field"
Which To par has a Score of 78-74-71-75=298?
CREATE TABLE table_name_52 (to_par INTEGER, score VARCHAR)
SELECT AVG(to_par) FROM table_name_52 WHERE score = 78 - 74 - 71 - 75 = 298
Who is first elected when Kentucky 6 is the district?
CREATE TABLE table_2668352_5 (first_elected VARCHAR, district VARCHAR)
SELECT first_elected FROM table_2668352_5 WHERE district = "Kentucky 6"
For an apparent magnitude greater than 11.8 what Right ascension value is assigned?
CREATE TABLE table_name_29 (right_ascension___j2000__ VARCHAR, apparent_magnitude INTEGER)
SELECT right_ascension___j2000__ FROM table_name_29 WHERE apparent_magnitude > 11.8
What is the type for a vessel with a listed unit of naval base swinoujscie (auxiliary squadron)?
CREATE TABLE table_name_49 (type VARCHAR, unit VARCHAR)
SELECT type FROM table_name_49 WHERE unit = "naval base swinoujscie (auxiliary squadron)"
What ordered has helena as the name?
CREATE TABLE table_name_87 (ordered VARCHAR, name VARCHAR)
SELECT ordered FROM table_name_87 WHERE name = "helena"
How many female students (sex is F) whose age is below 25?
CREATE TABLE student (sex VARCHAR, age VARCHAR)
SELECT COUNT(*) FROM student WHERE sex = 'F' AND age < 25
When the network mask is 255.255.255.128 what is the lowest available subnet?
CREATE TABLE table_149426_4 (available_subnets INTEGER, network_mask VARCHAR)
SELECT MIN(available_subnets) FROM table_149426_4 WHERE network_mask = "255.255.255.128"
What's the production time with more than 2.737 built and a 280s model?
CREATE TABLE table_name_59 (production_time VARCHAR, number_built VARCHAR, model VARCHAR)
SELECT production_time FROM table_name_59 WHERE number_built > 2.737 AND model = "280s"
Name the % for core moldova being 4.36%
CREATE TABLE table_19260_1 (_percentage VARCHAR, _percentage_core_moldova VARCHAR)
SELECT _percentage FROM table_19260_1 WHERE _percentage_core_moldova = "4.36_percentage"
Which name has more than 14 points with less than 1 draw?
CREATE TABLE table_name_99 (name VARCHAR, points VARCHAR, drawn VARCHAR)
SELECT name FROM table_name_99 WHERE points > 14 AND drawn < 1
What is th IATA for Norway with an ICAO of ENTO?
CREATE TABLE table_name_99 (iata VARCHAR, country VARCHAR, icao VARCHAR)
SELECT iata FROM table_name_99 WHERE country = "norway" AND icao = "ento"
How many silver medals when the bronze is more than 2 and having a rank more than 5?
CREATE TABLE table_name_89 (silver INTEGER, rank VARCHAR, bronze VARCHAR)
SELECT MAX(silver) FROM table_name_89 WHERE rank > 5 AND bronze > 2
How many seasons has UPS sponsored a car with a number larger than 17?
CREATE TABLE table_name_9 (season VARCHAR, car__number VARCHAR, sponsor VARCHAR)
SELECT COUNT(season) FROM table_name_9 WHERE car__number > 17 AND sponsor = "ups"
What is the district of the incumbent Thomas Larkin Thompson?
CREATE TABLE table_name_37 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_name_37 WHERE incumbent = "thomas larkin thompson"
Which letter has an operator of the Defense Information Systems Agency?
CREATE TABLE table_name_32 (letter VARCHAR, operator VARCHAR)
SELECT letter FROM table_name_32 WHERE operator = "defense information systems agency"
When Mark Cavendish wins sprint classification and Maarten Tjallingii wins most courageous, who wins youth classification?
CREATE TABLE table_25055040_22 (youth_classification VARCHAR, sprint_classification VARCHAR, most_courageous VARCHAR)
SELECT youth_classification FROM table_25055040_22 WHERE sprint_classification = "Mark Cavendish" AND most_courageous = "Maarten Tjallingii"
Which number and name has the description Gresley RB and a date before 1937?
CREATE TABLE table_name_16 (number_ VARCHAR, _name VARCHAR, description VARCHAR, date VARCHAR)
SELECT number_ & _name FROM table_name_16 WHERE description = "gresley rb" AND date < 1937
What is the name of the mill constructed of red brick in 1910 with a reference number lower than 55?
CREATE TABLE table_name_7 (name VARCHAR, construction VARCHAR, ref_number VARCHAR, built VARCHAR)
SELECT name FROM table_name_7 WHERE ref_number < 55 AND built = 1910 AND construction = "red brick"
March of 26 has what lowest game?
CREATE TABLE table_name_24 (game INTEGER, march VARCHAR)
SELECT MIN(game) FROM table_name_24 WHERE march = 26
WHich Country has a ICAO of ltcd?
CREATE TABLE table_name_46 (country VARCHAR, icao VARCHAR)
SELECT country FROM table_name_46 WHERE icao = "ltcd"
Which Points is the lowest one that has Touchdowns smaller than 2, and an Extra points of 7, and a Field goals smaller than 0?
CREATE TABLE table_name_85 (points INTEGER, field_goals VARCHAR, touchdowns VARCHAR, extra_points VARCHAR)
SELECT MIN(points) FROM table_name_85 WHERE touchdowns < 2 AND extra_points = 7 AND field_goals < 0
In what game was the attendance at the America West Arena 18,756?
CREATE TABLE table_29997127_4 (game INTEGER, location_attendance VARCHAR)
SELECT MAX(game) FROM table_29997127_4 WHERE location_attendance = "America West Arena 18,756"
Which hometown has a player of Ray Drew?
CREATE TABLE table_name_19 (hometown VARCHAR, player VARCHAR)
SELECT hometown FROM table_name_19 WHERE player = "ray drew"
Which district did William A. Burwell (Dr) belong to?
CREATE TABLE table_2668347_22 (district VARCHAR, candidates VARCHAR)
SELECT district FROM table_2668347_22 WHERE candidates = "William A. Burwell (DR)"
What place would you be in if your rank by average is less than 2.0?
CREATE TABLE table_19744915_14 (place VARCHAR, rank_by_average INTEGER)
SELECT place FROM table_19744915_14 WHERE rank_by_average < 2.0
What is the exercise when the equipment is heart rate monitor, water and towel?
CREATE TABLE table_27512025_1 (exercise VARCHAR, equipment VARCHAR)
SELECT exercise FROM table_27512025_1 WHERE equipment = "Heart rate monitor, water and towel"
List name of all amenities which Anonymous Donor Hall has, and sort the results in alphabetic order.
CREATE TABLE has_amenity (amenid VARCHAR, dormid VARCHAR); CREATE TABLE dorm_amenity (amenity_name VARCHAR, amenid VARCHAR); CREATE TABLE dorm (dormid VARCHAR, dorm_name VARCHAR)
SELECT T1.amenity_name FROM dorm_amenity AS T1 JOIN has_amenity AS T2 ON T2.amenid = T1.amenid JOIN dorm AS T3 ON T2.dormid = T3.dormid WHERE T3.dorm_name = 'Anonymous Donor Hall' ORDER BY T1.amenity_name
What is the technical number for Jiang Tingting & Jiang Wenwen, and the total was more than 96.334?
CREATE TABLE table_name_77 (technical INTEGER, athlete VARCHAR, total VARCHAR)
SELECT MAX(technical) FROM table_name_77 WHERE athlete = "jiang tingting & jiang wenwen" AND total > 96.334
What is the label for October 21, 1981?
CREATE TABLE table_name_37 (label VARCHAR, date VARCHAR)
SELECT label FROM table_name_37 WHERE date = "october 21, 1981"
How many people attended the Rams game against the Kansas City Chiefs?
CREATE TABLE table_name_86 (attendance VARCHAR, opponent VARCHAR)
SELECT attendance FROM table_name_86 WHERE opponent = "kansas city chiefs"
What was the sum of league goals where the toal was 8 and league cup goals were larger than 0?
CREATE TABLE table_name_80 (league_goals INTEGER, total_goals VARCHAR, league_cup_goals VARCHAR)
SELECT SUM(league_goals) FROM table_name_80 WHERE total_goals = 8 AND league_cup_goals > 0
Position of defensive back, and an Overall smaller than 69 is what lowest pick #?
CREATE TABLE table_name_7 (pick__number INTEGER, position VARCHAR, overall VARCHAR)
SELECT MIN(pick__number) FROM table_name_7 WHERE position = "defensive back" AND overall < 69
What is the sum number of Pl GP when the pick number is 178 and the road number is bigger than 9?
CREATE TABLE table_name_13 (pl_gp VARCHAR, pick__number VARCHAR, rd__number VARCHAR)
SELECT COUNT(pl_gp) FROM table_name_13 WHERE pick__number = 178 AND rd__number > 9
What was the score of game 30?
CREATE TABLE table_name_52 (score VARCHAR, game VARCHAR)
SELECT score FROM table_name_52 WHERE game = 30
What was the ticket price on September 16, 1986?
CREATE TABLE table_name_56 (ticket_price_s_ VARCHAR, date_s_ VARCHAR)
SELECT ticket_price_s_ FROM table_name_56 WHERE date_s_ = "september 16, 1986"
Can you tell me the High points that has the High rebounds of rafer alston (9)?
CREATE TABLE table_name_17 (high_points VARCHAR, high_rebounds VARCHAR)
SELECT high_points FROM table_name_17 WHERE high_rebounds = "rafer alston (9)"
WHAT IS THE FLAPS WITH PODIUMS OF 24 AND RACES BIGGER THAN 143?
CREATE TABLE table_name_2 (flaps INTEGER, podiums VARCHAR, races VARCHAR)
SELECT MAX(flaps) FROM table_name_2 WHERE podiums = 24 AND races > 143
What's the location for the Spartans?
CREATE TABLE table_name_99 (location VARCHAR, mascot VARCHAR)
SELECT location FROM table_name_99 WHERE mascot = "spartans"
What studio is director Reginald Hudlin from?
CREATE TABLE table_name_85 (studio VARCHAR, director VARCHAR)
SELECT studio FROM table_name_85 WHERE director = "reginald hudlin"
What are the African countries that have a population less than any country in Asia?
CREATE TABLE country (Name VARCHAR, Continent VARCHAR, population INTEGER)
SELECT Name FROM country WHERE Continent = "Africa" AND population < (SELECT MAX(population) FROM country WHERE Continent = "Asia")
What is the To Par that has Tommy Bolt with a Place of t6?
CREATE TABLE table_name_6 (to_par VARCHAR, place VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_6 WHERE place = "t6" AND player = "tommy bolt"
Who published in Italian with a page size of 8 inches (20cm) x 5.4 inches (14cm)?
CREATE TABLE table_name_5 (edition_publisher VARCHAR, language VARCHAR, page_size VARCHAR)
SELECT edition_publisher FROM table_name_5 WHERE language = "italian" AND page_size = "8 inches (20cm) x 5.4 inches (14cm)"
Which region had a catalogue number of 9362482872?
CREATE TABLE table_name_89 (region VARCHAR, catalogue VARCHAR)
SELECT region FROM table_name_89 WHERE catalogue = "9362482872"
Which Opponent has a Attendance of 7,034?
CREATE TABLE table_name_29 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_29 WHERE attendance = "7,034"
Which skill is used in fixing the most number of faults? List the skill id and description.
CREATE TABLE Skills (skill_id VARCHAR, skill_description VARCHAR); CREATE TABLE Skills_Required_To_Fix (skill_id VARCHAR)
SELECT T1.skill_id, T1.skill_description FROM Skills AS T1 JOIN Skills_Required_To_Fix AS T2 ON T1.skill_id = T2.skill_id GROUP BY T1.skill_id ORDER BY COUNT(*) DESC LIMIT 1
What is the greatest points value that have draws under 2 and 2 losses?
CREATE TABLE table_name_67 (points INTEGER, drawn VARCHAR, lost VARCHAR)
SELECT MAX(points) FROM table_name_67 WHERE drawn < 2 AND lost = 2
If the field goals is 26, what are the players names?
CREATE TABLE table_23346303_5 (player VARCHAR, field_goals VARCHAR)
SELECT player FROM table_23346303_5 WHERE field_goals = 26
How many cities have a stadium that was opened before the year of 2006?
CREATE TABLE stadium (city VARCHAR, opening_year INTEGER)
SELECT COUNT(DISTINCT city) FROM stadium WHERE opening_year < 2006
In what Round was Pick 138?
CREATE TABLE table_name_93 (round INTEGER, pick VARCHAR)
SELECT SUM(round) FROM table_name_93 WHERE pick = 138
What is listed in tor floysvik when karianne gulliksen is 6?
CREATE TABLE table_28677723_10 (tor_fløysvik INTEGER, karianne_gulliksen VARCHAR)
SELECT MIN(tor_fløysvik) FROM table_28677723_10 WHERE karianne_gulliksen = 6
When did the Rockies play the Giants with an attendance over 24,100?
CREATE TABLE table_name_35 (date VARCHAR, opponent VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_35 WHERE opponent = "giants" AND attendance > 24 OFFSET 100
Which opponent has a score of 84-88 (ot)?
CREATE TABLE table_name_79 (opponent VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_79 WHERE score = "84-88 (ot)"
WHAT IS THE RESULT FOR THE SONG WHERE THE ORIGINAL ARTIST IS BETTY EVERETT?
CREATE TABLE table_15778392_1 (result VARCHAR, original_artist VARCHAR)
SELECT result FROM table_15778392_1 WHERE original_artist = "Betty Everett"
What position was the number 6 draft pick?
CREATE TABLE table_25085059_1 (position VARCHAR, pick__number VARCHAR)
SELECT position FROM table_25085059_1 WHERE pick__number = 6
Which of the H. Rempel has J. J. Neufeld of Sajen?
CREATE TABLE table_name_31 (h_rempel VARCHAR, j_j_neufeld VARCHAR)
SELECT h_rempel FROM table_name_31 WHERE j_j_neufeld = "sajen"
Which city held the game in Old Trafford before 1907 when the Opposition was sussex?
CREATE TABLE table_name_49 (city VARCHAR, opposition VARCHAR, year VARCHAR, venue VARCHAR)
SELECT city FROM table_name_49 WHERE year < 1907 AND venue = "old trafford" AND opposition = "sussex"
What date did the song by jennifer lopez get issued?
CREATE TABLE table_name_54 (issue_date_s_ VARCHAR, artist VARCHAR)
SELECT issue_date_s_ FROM table_name_54 WHERE artist = "jennifer lopez"
Which Outcome has an Opponent in the final of simone colombo?
CREATE TABLE table_name_43 (outcome VARCHAR, opponent_in_the_final VARCHAR)
SELECT outcome FROM table_name_43 WHERE opponent_in_the_final = "simone colombo"
What is 2005, when 2006 is "1R"?
CREATE TABLE table_name_73 (Id VARCHAR)
SELECT 2005 FROM table_name_73 WHERE 2006 = "1r"
Can you tell me the Name that has the Place of 1?
CREATE TABLE table_name_86 (name VARCHAR, place VARCHAR)
SELECT name FROM table_name_86 WHERE place = 1
Which Team has a Position in table of 15th (c)?
CREATE TABLE table_name_75 (team VARCHAR, position_in_table VARCHAR)
SELECT team FROM table_name_75 WHERE position_in_table = "15th (c)"
Name the least week for september 19, 1976
CREATE TABLE table_14945881_1 (week INTEGER, date VARCHAR)
SELECT MIN(week) FROM table_14945881_1 WHERE date = "September 19, 1976"
What is the Total for 1926–1938?
CREATE TABLE table_name_89 (total VARCHAR, years VARCHAR)
SELECT total FROM table_name_89 WHERE years = "1926–1938"
What is the frequency for the active rock format?
CREATE TABLE table_name_18 (frequency VARCHAR, format VARCHAR)
SELECT frequency FROM table_name_18 WHERE format = "active rock"
When by80607002907ahbx80607i7720qm is the part number what is the socket?
CREATE TABLE table_18823880_10 (socket VARCHAR, part_number_s_ VARCHAR)
SELECT socket FROM table_18823880_10 WHERE part_number_s_ = "BY80607002907AHBX80607I7720QM"
Who were the reporters for the 1977 Belmont Stakes?
CREATE TABLE table_22583466_5 (reporters VARCHAR, year VARCHAR)
SELECT reporters FROM table_22583466_5 WHERE year = 1977
What song was directed by Shankar Jaikishan?
CREATE TABLE table_name_13 (song VARCHAR, music_director_s_ VARCHAR)
SELECT song FROM table_name_13 WHERE music_director_s_ = "shankar jaikishan"
Which Date has a Score of 4–2?
CREATE TABLE table_name_14 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_14 WHERE score = "4–2"
for country of spain and iata of ibz, what's the city?
CREATE TABLE table_name_29 (city VARCHAR, country VARCHAR, iata VARCHAR)
SELECT city FROM table_name_29 WHERE country = "spain" AND iata = "ibz"
How many episodes were viewed by 1.29 million people?
CREATE TABLE table_23918997_1 (no VARCHAR, us_viewers__million_ VARCHAR)
SELECT COUNT(no) FROM table_23918997_1 WHERE us_viewers__million_ = "1.29"
What is the earliest first elected for district georgia 1?
CREATE TABLE table_1341640_11 (first_elected INTEGER, district VARCHAR)
SELECT MIN(first_elected) FROM table_1341640_11 WHERE district = "Georgia 1"
How much Avg/G has a Gain smaller than 1571, and a Long smaller than 46?
CREATE TABLE table_name_81 (avg_g VARCHAR, gain VARCHAR, long VARCHAR)
SELECT COUNT(avg_g) FROM table_name_81 WHERE gain < 1571 AND long < 46
What country is Tom Kite from?
CREATE TABLE table_name_56 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_56 WHERE player = "tom kite"
What week #(s featured sara bareilles as the original artist?
CREATE TABLE table_21501564_1 (week__number VARCHAR, original_artist VARCHAR)
SELECT week__number FROM table_21501564_1 WHERE original_artist = "Sara Bareilles"
What order has the Species Authority of hydrochaeris hydrochaeris (linnaeus, 1766)?
CREATE TABLE table_name_84 (order VARCHAR, species_authority VARCHAR)
SELECT order FROM table_name_84 WHERE species_authority = "hydrochaeris hydrochaeris (linnaeus, 1766)"
How many employees does each role have? List role description, id and number of employees.
CREATE TABLE ROLES (role_description VARCHAR, role_code VARCHAR); CREATE TABLE Employees (role_code VARCHAR)
SELECT T1.role_description, T2.role_code, COUNT(*) FROM ROLES AS T1 JOIN Employees AS T2 ON T1.role_code = T2.role_code GROUP BY T2.role_code
What is the singular present that is associated with a singular preterite of ou and a subjunctive present of ie?
CREATE TABLE table_name_51 (sing_pres VARCHAR, sing_pret VARCHAR, subj_pres VARCHAR)
SELECT sing_pres FROM table_name_51 WHERE sing_pret = "ou" AND subj_pres = "ie"
Name the avg finish for position of 70th
CREATE TABLE table_2308381_2 (avg_finish VARCHAR, position VARCHAR)
SELECT avg_finish FROM table_2308381_2 WHERE position = "70th"
What is the constructor on the team with 8 rounds and a chassis of 156 158 1512?
CREATE TABLE table_name_54 (constructor VARCHAR, rounds VARCHAR, chassis VARCHAR)
SELECT constructor FROM table_name_54 WHERE rounds = "8" AND chassis = "156 158 1512"
Which island has a population of 9,520 (2000)?
CREATE TABLE table_name_20 (island VARCHAR, population VARCHAR)
SELECT island FROM table_name_20 WHERE population = "9,520 (2000)"
what is the result on september 10, 2008?
CREATE TABLE table_name_43 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_43 WHERE date = "september 10, 2008"
What is the highest average of the contestant from Texas with an evening gown larger than 8.875?
CREATE TABLE table_name_57 (average INTEGER, state VARCHAR, evening_gown VARCHAR)
SELECT MAX(average) FROM table_name_57 WHERE state = "texas" AND evening_gown > 8.875
What was the result for james o'h. patterson when first elected in 1904?
CREATE TABLE table_name_40 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
SELECT result FROM table_name_40 WHERE first_elected = "1904" AND incumbent = "james o'h. patterson"
How many incumbents are there in Pennsylvania 5?
CREATE TABLE table_2668401_12 (incumbent VARCHAR, district VARCHAR)
SELECT COUNT(incumbent) FROM table_2668401_12 WHERE district = "Pennsylvania 5"
What is the 2012 value with 1r in 2010 and 2r in 2006?
CREATE TABLE table_name_13 (Id VARCHAR)
SELECT 2012 FROM table_name_13 WHERE 2010 = "1r" AND 2006 = "2r"
What is the railway number of the aw class?
CREATE TABLE table_name_3 (railway_number_s_ VARCHAR, class VARCHAR)
SELECT railway_number_s_ FROM table_name_3 WHERE class = "aw"
At what Platform is the Departure 18:00?
CREATE TABLE table_name_26 (platform VARCHAR, departure VARCHAR)
SELECT platform FROM table_name_26 WHERE departure = "18:00"
What was the reanking of Hamid Veisi?
CREATE TABLE table_name_44 (rank VARCHAR, athlete VARCHAR)
SELECT rank FROM table_name_44 WHERE athlete = "hamid veisi"