question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
When are all years that tournament location is Western Turnpike Golf Course?
CREATE TABLE table_15315816_1 (year VARCHAR, tournament_location VARCHAR)
SELECT year FROM table_15315816_1 WHERE tournament_location = "Western Turnpike Golf Course"
What was home team North Melbourne's opponents score?
CREATE TABLE table_name_40 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_40 WHERE home_team = "north melbourne"
What is the total number of wins in the 2007 season when the fastest laps is 0, there are less than 0 podiums, and there are less than 16 races?
CREATE TABLE table_name_80 (wins INTEGER, podiums VARCHAR, season VARCHAR, fastest_laps VARCHAR, races VARCHAR)
SELECT SUM(wins) FROM table_name_80 WHERE fastest_laps = 0 AND races < 16 AND season = "2007" AND podiums < 0
Who is the mens singles and womens singlses is wang shixian?
CREATE TABLE table_13553701_1 (mens_singles VARCHAR, womens_singles VARCHAR)
SELECT mens_singles FROM table_13553701_1 WHERE womens_singles = "Wang Shixian"
Which Block does Northamptonshire Area have?
CREATE TABLE table_name_25 (block VARCHAR, area VARCHAR)
SELECT block FROM table_name_25 WHERE area = "northamptonshire"
What is the attribute data type of the attribute with name "Green"?
CREATE TABLE Attribute_Definitions (attribute_data_type VARCHAR, attribute_name VARCHAR)
SELECT attribute_data_type FROM Attribute_Definitions WHERE attribute_name = "Green"
How many numbers have sp of 20/1 and a finishing position of fence 19?
CREATE TABLE table_19624708_1 (number VARCHAR, sp VARCHAR, finishing_position VARCHAR)
SELECT COUNT(number) FROM table_19624708_1 WHERE sp = "20/1" AND finishing_position = "Fence 19"
What type of chipset is in the Precision t3400 model with the PCI Express graphics?
CREATE TABLE table_name_97 (chipset VARCHAR, graphics VARCHAR, model VARCHAR)
SELECT chipset FROM table_name_97 WHERE graphics = "pci express" AND model = "precision t3400"
What is the name of the national final main host at BBC Television Centre, and the selection show was Eurovision: Your Country Needs You?
CREATE TABLE table_name_75 (national_final_main_host VARCHAR, venue VARCHAR, selection_show VARCHAR)
SELECT national_final_main_host FROM table_name_75 WHERE venue = "bbc television centre" AND selection_show = "eurovision: your country needs you"
With wins greater than 0 what is the minimum Top-10?
CREATE TABLE table_name_43 (top_10 INTEGER, wins INTEGER)
SELECT MIN(top_10) FROM table_name_43 WHERE wins > 0
What is the fewest number of occ championships for the team that last won an outright occ championship in 2006?
CREATE TABLE table_17429402_7 (occ_championships INTEGER, last_outright_occ_championship VARCHAR)
SELECT MIN(occ_championships) FROM table_17429402_7 WHERE last_outright_occ_championship = "2006"
What Country had a Score of 71-67=138?
CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_76 WHERE score = 71 - 67 = 138
How many Starts that have Cuts made of 2, Top 25 larger than 0, and Earnings ($) smaller than 338,067?
CREATE TABLE table_name_66 (starts VARCHAR, earnings__$_ VARCHAR, cuts_made VARCHAR, top_25 VARCHAR)
SELECT COUNT(starts) FROM table_name_66 WHERE cuts_made = 2 AND top_25 > 0 AND earnings__$_ < 338 OFFSET 067
What was the highest amount of people that attended the elgin city team?
CREATE TABLE table_11206916_1 (highest VARCHAR, team VARCHAR)
SELECT COUNT(highest) FROM table_11206916_1 WHERE team = "Elgin City"
What is the average Grid for the honda cbr1000rr, with 18 laps and a time of +1:12.884?
CREATE TABLE table_name_45 (grid INTEGER, time VARCHAR, bike VARCHAR, laps VARCHAR)
SELECT AVG(grid) FROM table_name_45 WHERE bike = "honda cbr1000rr" AND laps = 18 AND time = "+1:12.884"
How many military deaths were there when there were 1,200+ military and/or civilian wounded?
CREATE TABLE table_name_15 (military_deaths VARCHAR, military_and_or_civilian_wounded VARCHAR)
SELECT military_deaths FROM table_name_15 WHERE military_and_or_civilian_wounded = "1,200+"
What is the average population of the region with a density less than 487, a rank of 9, and an area larger than 377,944?
CREATE TABLE table_name_24 (population INTEGER, area__km_2__ VARCHAR, density__pop_per_km_2__ VARCHAR, rank VARCHAR)
SELECT AVG(population) FROM table_name_24 WHERE density__pop_per_km_2__ < 487 AND rank = 9 AND area__km_2__ > 377 OFFSET 944
What percentage of votes does the shareholder with 78.19% of capital have?
CREATE TABLE table_206359_1 (_percentage_of_votes VARCHAR, _percentage_of_capital VARCHAR)
SELECT _percentage_of_votes FROM table_206359_1 WHERE _percentage_of_capital = "78.19"
what is the result when the opponent is at dallas cowboys?
CREATE TABLE table_name_12 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_12 WHERE opponent = "at dallas cowboys"
what team had ricardo serrano for combativity prize?
CREATE TABLE table_22410316_17 (team_classification VARCHAR, combativity_prize VARCHAR)
SELECT team_classification FROM table_22410316_17 WHERE combativity_prize = "Ricardo Serrano"
What home team has 6 as the tie no.?
CREATE TABLE table_name_82 (home_team VARCHAR, tie_no VARCHAR)
SELECT home_team FROM table_name_82 WHERE tie_no = "6"
What was the attendance at the Meadowlands against the New England Patriots?
CREATE TABLE table_name_63 (attendance VARCHAR, game_site VARCHAR, opponent VARCHAR)
SELECT attendance FROM table_name_63 WHERE game_site = "the meadowlands" AND opponent = "new england patriots"
Name the original air date for series number 15
CREATE TABLE table_26261072_1 (original_air_date VARCHAR, series__number VARCHAR)
SELECT original_air_date FROM table_26261072_1 WHERE series__number = 15
What 2007-08 season has marcianise as the city?
CREATE TABLE table_name_60 (city VARCHAR)
SELECT 2007 AS _08_season FROM table_name_60 WHERE city = "marcianise"
What is the total number of top-25 in the Masters Tournament, which has 0 top-10 and more than 0 top-5?
CREATE TABLE table_name_16 (top_25 VARCHAR, top_5 VARCHAR, top_10 VARCHAR, tournament VARCHAR)
SELECT COUNT(top_25) FROM table_name_16 WHERE top_10 = 0 AND tournament = "masters tournament" AND top_5 > 0
What is the highest Attendance with a Result that is w 24-21?
CREATE TABLE table_name_50 (attendance INTEGER, result VARCHAR)
SELECT MAX(attendance) FROM table_name_50 WHERE result = "w 24-21"
Where was the player from se missouri state drafted?
CREATE TABLE table_24540893_6 (pick__number VARCHAR, school VARCHAR)
SELECT COUNT(pick__number) FROM table_24540893_6 WHERE school = "SE Missouri State"
What's the team #2 in the round where team #1 is Iraklis?
CREATE TABLE table_19130829_4 (team__number2 VARCHAR, team__number1 VARCHAR)
SELECT team__number2 FROM table_19130829_4 WHERE team__number1 = "Iraklis"
What is the date for a CD format with a Region of Europe?
CREATE TABLE table_name_54 (date VARCHAR, region VARCHAR, format VARCHAR)
SELECT date FROM table_name_54 WHERE region = "europe" AND format = "cd"
List the title for the season episode number of 8.
CREATE TABLE table_23916272_6 (title VARCHAR, season__number VARCHAR)
SELECT title FROM table_23916272_6 WHERE season__number = 8
what is the highest fa cup goals when the total goals is more than 3 and total apps is 31 (1)?
CREATE TABLE table_name_75 (fa_cup_goals INTEGER, total_goals VARCHAR, total_apps VARCHAR)
SELECT MAX(fa_cup_goals) FROM table_name_75 WHERE total_goals > 3 AND total_apps = "31 (1)"
Which shooter had a total of 11 at the WC Munich with a score of 6?
CREATE TABLE table_name_18 (shooter VARCHAR, score_points VARCHAR, total VARCHAR, event VARCHAR)
SELECT shooter FROM table_name_18 WHERE total = "11" AND event = "wc munich" AND score_points = "6"
What is the bronze number when the total is 54/
CREATE TABLE table_name_30 (bronze INTEGER, total VARCHAR)
SELECT AVG(bronze) FROM table_name_30 WHERE total = 54
What was the number of murders the year forcible rapes were at 166?
CREATE TABLE table_25271777_1 (murder VARCHAR, forcible_rape VARCHAR)
SELECT murder FROM table_25271777_1 WHERE forcible_rape = 166
How many wins do the players that earned more than 720,134 have?
CREATE TABLE table_name_8 (wins INTEGER, earnings__$__ INTEGER)
SELECT SUM(wins) FROM table_name_8 WHERE earnings__$__ > 720 OFFSET 134
Which Rd took place at the Indianapolis 500?
CREATE TABLE table_10706961_2 (rd VARCHAR, name VARCHAR)
SELECT rd FROM table_10706961_2 WHERE name = "Indianapolis 500"
On what date was the track Ballarat?
CREATE TABLE table_2896329_1 (date VARCHAR, track VARCHAR)
SELECT date FROM table_2896329_1 WHERE track = "Ballarat"
What's the name of the county where 54.6% voted for Bush?
CREATE TABLE table_1304443_2 (county VARCHAR, bush_percentage VARCHAR)
SELECT county FROM table_1304443_2 WHERE bush_percentage = "54.6%"
On what date was Stauffer Chemical Company (Lemoyne Plant), which was listed on 09/21/1984, deleted?
CREATE TABLE table_name_35 (deleted VARCHAR, listed VARCHAR, name VARCHAR)
SELECT deleted FROM table_name_35 WHERE listed = "09/21/1984" AND name = "stauffer chemical company (lemoyne plant)"
What is the round or race of the winning driver Charles Hollings and what was his pole position?
CREATE TABLE table_name_32 (round___race VARCHAR, winning_driver VARCHAR, pole_position VARCHAR)
SELECT round___race FROM table_name_32 WHERE winning_driver = "charles hollings" AND pole_position = "charles hollings"
What is the money for the player with a score of 68-69-67-73=277?
CREATE TABLE table_name_72 (money___$__ VARCHAR, score VARCHAR)
SELECT money___$__ FROM table_name_72 WHERE score = 68 - 69 - 67 - 73 = 277
What is the name of the competition that was held on August 20, 2004?
CREATE TABLE table_name_4 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_4 WHERE date = "august 20, 2004"
Who left a position on 24 January?
CREATE TABLE table_17327458_1 (outgoing_manager VARCHAR, date_of_vacancy VARCHAR)
SELECT outgoing_manager FROM table_17327458_1 WHERE date_of_vacancy = "24 January"
what is the score when the runner-up is richard krajicek?
CREATE TABLE table_name_54 (score VARCHAR, runner_up VARCHAR)
SELECT score FROM table_name_54 WHERE runner_up = "richard krajicek"
What is the date of the winning score 74-67-71-73=285?
CREATE TABLE table_2167226_3 (date VARCHAR, winning_score VARCHAR)
SELECT date FROM table_2167226_3 WHERE winning_score = 74 - 67 - 71 - 73 = 285
Which name has an Order smaller than 997,more than 5 goals, and 215 games?
CREATE TABLE table_name_43 (name VARCHAR, games VARCHAR, order VARCHAR, goals VARCHAR)
SELECT name FROM table_name_43 WHERE order < 997 AND goals > 5 AND games = 215
Name the brighton cast for jerry cruncher
CREATE TABLE table_17085724_1 (brighton_cast VARCHAR, character VARCHAR)
SELECT brighton_cast FROM table_17085724_1 WHERE character = "Jerry Cruncher"
Who is the player with playoff money from the United States?
CREATE TABLE table_name_87 (player VARCHAR, money___£__ VARCHAR, country VARCHAR)
SELECT player FROM table_name_87 WHERE money___£__ = "playoff" AND country = "united states"
What is the score from the Sacramento monarchs from the west and the Connecticut sun from the east?
CREATE TABLE table_name_83 (result VARCHAR, western_champion VARCHAR, eastern_champion VARCHAR)
SELECT result FROM table_name_83 WHERE western_champion = "sacramento monarchs" AND eastern_champion = "connecticut sun"
Name the song title with time of 1:51
CREATE TABLE table_name_75 (song_title VARCHAR, time VARCHAR)
SELECT song_title FROM table_name_75 WHERE time = "1:51"
What was the won when the points for was 496?
CREATE TABLE table_12792876_3 (won VARCHAR, points_for VARCHAR)
SELECT won FROM table_12792876_3 WHERE points_for = "496"
What is the Match with Points that are 24?
CREATE TABLE table_name_11 (match VARCHAR, points VARCHAR)
SELECT match FROM table_name_11 WHERE points = 24
What is the attendance number of the game on April 16?
CREATE TABLE table_name_91 (attendance VARCHAR, date VARCHAR)
SELECT COUNT(attendance) FROM table_name_91 WHERE date = "april 16"
Which opponent plays on September 19?
CREATE TABLE table_name_11 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_11 WHERE date = "september 19"
What is the l/100km urban (cold) with a CO 2 g/km less than 222, an mpg-us urban greater than 17.8, an mpg-uk extra-urban of 55.4, and an engine capacity greater than 1560?
CREATE TABLE table_name_24 (l_100km_urban__cold_ VARCHAR, engine_capacity VARCHAR, mpg_uk_extra_urban VARCHAR, co_2_g_km VARCHAR, mpg_us_urban VARCHAR)
SELECT l_100km_urban__cold_ FROM table_name_24 WHERE co_2_g_km < 222 AND mpg_us_urban > 17.8 AND mpg_uk_extra_urban = 55.4 AND engine_capacity > 1560
Who won when the attendance was 8,000?
CREATE TABLE table_name_52 (record VARCHAR, attendance VARCHAR)
SELECT record FROM table_name_52 WHERE attendance = "8,000"
What is the average attendance for a game against Phoenix?
CREATE TABLE table_name_16 (attendance INTEGER, visitor VARCHAR)
SELECT AVG(attendance) FROM table_name_16 WHERE visitor = "phoenix"
What is Score, when Set 3 is 17-25?
CREATE TABLE table_name_67 (score VARCHAR, set_3 VARCHAR)
SELECT score FROM table_name_67 WHERE set_3 = "17-25"
Which vehicle failed at launch?
CREATE TABLE table_name_34 (vehicle VARCHAR, ceased_operation VARCHAR)
SELECT vehicle FROM table_name_34 WHERE ceased_operation = "failed at launch"
What is China's International tourism expenditure (2011)?
CREATE TABLE table_name_4 (international_tourism_expenditure__2011_ VARCHAR, country VARCHAR)
SELECT international_tourism_expenditure__2011_ FROM table_name_4 WHERE country = "china"
Name the type for headquarters principal activites.
CREATE TABLE table_name_53 (type VARCHAR, principal_activities VARCHAR)
SELECT type FROM table_name_53 WHERE principal_activities = "headquarters"
WHAT IS THE AWAY TEAM WITH HOME OF LEICESTER CITY?
CREATE TABLE table_name_33 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_33 WHERE home_team = "leicester city"
What is the total number of Round, when College/Junior/Club Team (League) is "Kelowna Rockets ( WHL )"?
CREATE TABLE table_name_83 (round VARCHAR, college_junior_club_team__league_ VARCHAR)
SELECT COUNT(round) FROM table_name_83 WHERE college_junior_club_team__league_ = "kelowna rockets ( whl )"
Which Team 2 has a Captain 1 of final?
CREATE TABLE table_name_87 (team_2 VARCHAR, captain_1 VARCHAR)
SELECT team_2 FROM table_name_87 WHERE captain_1 = "final"
Which year was the peter jackson classic?
CREATE TABLE table_name_36 (year VARCHAR, championship VARCHAR)
SELECT year FROM table_name_36 WHERE championship = "peter jackson classic"
Name the enrollment for tomcats
CREATE TABLE table_262476_1 (enrollment VARCHAR, nickname VARCHAR)
SELECT enrollment FROM table_262476_1 WHERE nickname = "Tomcats"
Which score has a Loss of gubicza (0-1)?
CREATE TABLE table_name_66 (score VARCHAR, loss VARCHAR)
SELECT score FROM table_name_66 WHERE loss = "gubicza (0-1)"
Which entrant had a chassis of March CG891?
CREATE TABLE table_name_20 (entrant VARCHAR, chassis VARCHAR)
SELECT entrant FROM table_name_20 WHERE chassis = "march cg891"
What is the area in square kilometers of Studholm?
CREATE TABLE table_name_87 (area_km_2 VARCHAR, official_name VARCHAR)
SELECT COUNT(area_km_2) FROM table_name_87 WHERE official_name = "studholm"
What records are hit where the opponent is Aylesbury United?
CREATE TABLE table_1233808_2 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_1233808_2 WHERE opponent = "Aylesbury United"
Who were the candidates that ran when Jim Moody was up for reelection after 1982?
CREATE TABLE table_1341577_50 (candidates VARCHAR, first_elected VARCHAR)
SELECT candidates FROM table_1341577_50 WHERE first_elected = 1982
What is Season, when Races is less than 16?
CREATE TABLE table_name_7 (season VARCHAR, races INTEGER)
SELECT season FROM table_name_7 WHERE races < 16
What is the lowest numbered game against Phoenix with a record of 29-17?
CREATE TABLE table_name_61 (game INTEGER, opponent VARCHAR, record VARCHAR)
SELECT MIN(game) FROM table_name_61 WHERE opponent = "phoenix" AND record = "29-17"
What is the lowest goal difference a club with 61 goals against and less than 11 draws has?
CREATE TABLE table_name_94 (goal_difference INTEGER, goals_against VARCHAR, draws VARCHAR)
SELECT MIN(goal_difference) FROM table_name_94 WHERE goals_against = 61 AND draws < 11
Who was the away team at the Win Entertainment Centre?
CREATE TABLE table_name_31 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_31 WHERE venue = "win entertainment centre"
What is the highest silver medal count when there is 1 Bronze medal and 1 Gold medal?
CREATE TABLE table_name_86 (silver INTEGER, bronze VARCHAR, gold VARCHAR)
SELECT MAX(silver) FROM table_name_86 WHERE bronze = 1 AND gold = 1
What home team played against St Kilda?
CREATE TABLE table_name_68 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_68 WHERE away_team = "st kilda"
Which Number of people 1991 has a Percent of Slovenes 1991 of 14.4%?
CREATE TABLE table_name_67 (number_of_people_1991 INTEGER, percent_of_slovenes_1991 VARCHAR)
SELECT MAX(number_of_people_1991) FROM table_name_67 WHERE percent_of_slovenes_1991 = "14.4%"
Where was the match that resulted in a win in 4:16 held?
CREATE TABLE table_name_44 (location VARCHAR, res VARCHAR, time VARCHAR)
SELECT location FROM table_name_44 WHERE res = "win" AND time = "4:16"
What is the Heat of the Player with a Rank of 18 or less and Result of 55.15?
CREATE TABLE table_name_54 (heat VARCHAR, rank VARCHAR, result VARCHAR)
SELECT heat FROM table_name_54 WHERE rank < 18 AND result = "55.15"
Which College had an Overall pick of 171?
CREATE TABLE table_name_53 (college VARCHAR, overall VARCHAR)
SELECT college FROM table_name_53 WHERE overall = 171
What is the sum of Total, when Silver is 0, and when Gold is 1?
CREATE TABLE table_name_72 (total INTEGER, silver VARCHAR, gold VARCHAR)
SELECT SUM(total) FROM table_name_72 WHERE silver = 0 AND gold = 1
What was the lowest Pick number of Player Brian Bradley from Canada, in a Draft year before 1985?
CREATE TABLE table_name_29 (pick INTEGER, player VARCHAR, nationality VARCHAR, draft VARCHAR)
SELECT MIN(pick) FROM table_name_29 WHERE nationality = "canada" AND draft < 1985 AND player = "brian bradley"
How many times did outgoing manager Bart de Roover vacated a position?
CREATE TABLE table_27374004_4 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)
SELECT COUNT(date_of_vacancy) FROM table_27374004_4 WHERE outgoing_manager = "Bart De Roover"
What was the series where a team scored 56 points?
CREATE TABLE table_25369796_1 (series VARCHAR, points VARCHAR)
SELECT series FROM table_25369796_1 WHERE points = "56"
What is the episode name for series number 45?
CREATE TABLE table_29960651_5 (episode VARCHAR, no_for_series VARCHAR)
SELECT episode FROM table_29960651_5 WHERE no_for_series = 45
How large of a crowd can the Glenferrie oval hold?
CREATE TABLE table_name_9 (crowd VARCHAR, venue VARCHAR)
SELECT crowd FROM table_name_9 WHERE venue = "glenferrie oval"
What is the translation of chetvert?
CREATE TABLE table_name_81 (translation VARCHAR, unit VARCHAR)
SELECT translation FROM table_name_81 WHERE unit = "chetvert"
What is Tries Against, when Points Against is 213?
CREATE TABLE table_name_78 (tries_against VARCHAR, points_against VARCHAR)
SELECT tries_against FROM table_name_78 WHERE points_against = "213"
What 1979 Hindi film had Ravindra Jain directing music?
CREATE TABLE table_name_60 (film_name VARCHAR, year VARCHAR, music_director VARCHAR, language VARCHAR, lyricist VARCHAR)
SELECT film_name FROM table_name_60 WHERE language = "hindi" AND lyricist = "ravindra jain" AND music_director = "ravindra jain" AND year = 1979
How many poles had 72 points?
CREATE TABLE table_20396_1 (poles VARCHAR, points VARCHAR)
SELECT COUNT(poles) FROM table_20396_1 WHERE points = "72"
What is the total rank for New Zealand, when less than 1 bronze medals were won?
CREATE TABLE table_name_56 (rank INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT SUM(rank) FROM table_name_56 WHERE nation = "new zealand" AND bronze < 1
What is the Website of the Cheadle Hulme School with a Report of Ofsted for Ages 4-19?
CREATE TABLE table_name_69 (website VARCHAR, locality VARCHAR, report VARCHAR, ages VARCHAR)
SELECT website FROM table_name_69 WHERE report = "ofsted" AND ages = "4-19" AND locality = "cheadle hulme"
Name the comptroller for office of prohibition
CREATE TABLE table_22607062_1 (comptroller VARCHAR, ticket___office VARCHAR)
SELECT comptroller FROM table_22607062_1 WHERE ticket___office = "Prohibition"
What is Mark, when React is less than 0.148?
CREATE TABLE table_name_59 (mark VARCHAR, react INTEGER)
SELECT mark FROM table_name_59 WHERE react < 0.148
Which authors have a Unit of densuș-ciula formation?
CREATE TABLE table_name_42 (authors VARCHAR, unit VARCHAR)
SELECT authors FROM table_name_42 WHERE unit = "densuș-ciula formation"
Who wrote the episode that was directed by Terry Ingram?
CREATE TABLE table_name_58 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_name_58 WHERE directed_by = "terry ingram"
What Label was Catalogued tojp 60121-22?
CREATE TABLE table_name_83 (label VARCHAR, catalogue VARCHAR)
SELECT label FROM table_name_83 WHERE catalogue = "tojp 60121-22"
What is the pinyin for the Chinese title 直感一笔?
CREATE TABLE table_name_78 (pinyin VARCHAR, chinese_title VARCHAR)
SELECT pinyin FROM table_name_78 WHERE chinese_title = "直感一笔"
What company collaborated in SBI-087 for rheumatoid arthritis?
CREATE TABLE table_name_7 (collaboration VARCHAR, name VARCHAR, indication VARCHAR)
SELECT collaboration FROM table_name_7 WHERE name = "sbi-087" AND indication = "rheumatoid arthritis"