db_id
stringlengths
4
28
schema
listlengths
2
65
description
listlengths
2
65
video_games
[ { "create_sql": "CREATE TABLE genre\n(\n id INTEGER not null\n primary key,\n genre_name TEXT default NULL\n);", "table": "genre" }, { "create_sql": "CREATE TABLE game\n(\n id INTEGER not null\n primary key,\n genre_id INTEGER default NULL,\...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nid,,the unique identifier of the game genre,integer,\ngenre_name,,the game genre,text,\"commonsense evidence:\nThe game genre can have a significant effect on the game. The genre refers to the category or type o...
ice_hockey_draft
[ { "create_sql": "CREATE TABLE height_info\n(\n height_id INTEGER\n primary key,\n height_in_cm INTEGER,\n height_in_inch TEXT\n);", "table": "height_info" }, { "create_sql": "CREATE TABLE weight_info\n(\n weight_id INTEGER\n primary key,\n weight_in_kg...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nheight_id,height id,the unique height id,integer,\nheight_in_cm,height in cm,height in cm,integer,e.g. 180 --> the height is 180 cm\nheight_in_inch,height in inch,height in inch,text,", "table": "height_info...
shipping
[ { "create_sql": "CREATE TABLE city\n(\n city_id INTEGER\n primary key,\n city_name TEXT,\n state TEXT,\n population INTEGER,\n area REAL\n);", "table": "city" }, { "create_sql": "CREATE TABLE customer\n(\n cust_id INTEGER\n primary key,\n...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\ndriver_id,driver id,Unique identifier for the driver,integer,\nfirst_name,first name,First given name of the driver,text,\nlast_name,last name ,Family name of the driver,text,commonsense evidence: full name = fi...
world_development_indicators
[ { "create_sql": "CREATE TABLE \"Country\"\n(\n CountryCode TEXT not null\n primary key,\n ShortName TEXT,\n TableName TEXT,\n LongName TEXT,\n Alpha2Code ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nCountrycode,Country code,code identifying unique countries,text,\nSeriescode,Series code,Series code of countries,text,\nYear,,Year,text,\nDescription,,Description of country footnotes,text,", "table": "Foot...
books
[ { "create_sql": "CREATE TABLE address_status\n(\n status_id INTEGER\n primary key,\n address_status TEXT\n);", "table": "address_status" }, { "create_sql": "CREATE TABLE author\n(\n author_id INTEGER\n primary key,\n author_name TEXT\n);", "table": "autho...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\ncustomer_id,customer id,the unique identifier of the customer,integer,\nfirst_name,first name,the first name of the customer,text,\nlast_name,last name,the last name of the customer,text,\"commonsense evidence:\...
simpson_episodes
[ { "create_sql": "CREATE TABLE \"Episode\"\n(\n episode_id TEXT\n constraint Episode_pk\n primary key,\n season INTEGER,\n episode INTEGER,\n number_in_series INTEGER,\n title TEXT,\n summary TEXT,\n air_date TEXT,\n e...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\naward_id,award id,A unique identifier for the award,integer,\ncharacter,,the name of the awarded character,text,", "table": "Character_Award" }, { "description": "original_column_name,column_name,col...
retail_complains
[ { "create_sql": "CREATE TABLE state\n(\n StateCode TEXT\n constraint state_pk\n primary key,\n State TEXT,\n Region TEXT\n);", "table": "state" }, { "create_sql": "CREATE TABLE callcenterlogs\n(\n \"Date received\" DATE,\n \"Complaint ID\" TEXT,\n \"rand c...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nDate,,,date,\nStars,,,integer,\nReviews,,,text,\nProduct,,,text,\ndistrict_id,,,integer,", "table": "reviews" }, { "description": "original_column_name,column_name,column_description,data_format,valu...
professional_basketball
[ { "create_sql": "CREATE TABLE awards_players\n(\n playerID TEXT not null,\n award TEXT not null,\n year INTEGER not null,\n lgID TEXT null,\n note TEXT null,\n pos TEXT null,\n primary key (playerID, year, award),\n foreign key (playerID) references players (...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nid,,the unique number to determine one row of the data,integer,\ndraftYear,,which year does this draft happens,integer,\ndraftRound,,the Round number of this draft,integer,\"If the value is 0, it means that ther...
public_review_platform
[ { "create_sql": "CREATE TABLE Attributes\n(\n attribute_id INTEGER\n constraint Attributes_pk\n primary key,\n attribute_name TEXT\n);", "table": "Attributes" }, { "create_sql": "CREATE TABLE Categories\n(\n category_id INTEGER\n constraint Categories_pk\n ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\ncompliment_id,compliment id,,integer,\ncompliment_type,compliment type,,text,", "table": "Compliments" }, { "description": "original_column_name,column_name,column_description,data_format,value_descr...
synthea
[ { "create_sql": "CREATE TABLE all_prevalences\n(\n ITEM TEXT\n primary key,\n \"POPULATION TYPE\" TEXT,\n OCCURRENCES INTEGER,\n \"POPULATION COUNT\" INTEGER,\n \"PREVALENCE RATE\" REAL,\n \"PREVALENCE PERCENTAGE\" REAL\n);", "tabl...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nID,,the unique id of the encounter,text,\nDATE,,the date of the encounter,date,yyyy-mm-dd\nPATIENT,,the patient id,text,\nCODE,,the code of the care plan ,integer,\nDESCRIPTION,,the description of the care plan,...
mondial_geo
[ { "create_sql": "CREATE TABLE \"borders\"\n(\n Country1 TEXT default '' not null\n constraint borders_ibfk_1\n references country,\n Country2 TEXT default '' not null\n constraint borders_ibfk_2\n references country,\n Length REAL,\n primary key (Country1, Count...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nCity,,the name of the city,text,\nProvince,, the province where the city belongs to,text,\nCountry,,the country code where the city belongs to,text,\nIsland,, the island it is (maybe only partially) located on,t...
european_football_1
[ { "create_sql": "CREATE TABLE divisions\n(\n division TEXT not null\n primary key,\n name TEXT,\n country TEXT\n);", "table": "divisions" }, { "create_sql": "CREATE TABLE matchs\n(\n Div TEXT,\n Date DATE,\n HomeTeam TEXT,\n AwayTeam TEXT,\n FTHG INTE...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\ndivision,,division id,text,\nname,,name of the division,text,\ncountry,,country of the division,text,", "table": "divisions" }, { "description": "original_column_name,column_name,column_description,d...
trains
[ { "create_sql": "CREATE TABLE `cars` (\n `id` INTEGER NOT NULL,\n `train_id` INTEGER DEFAULT NULL,\n `position` INTEGER DEFAULT NULL,\n `shape` TEXT DEFAULT NULL,\n `len`TEXT DEFAULT NULL,\n `sides` TEXT DEFAULT NULL,\n `roof` TEXT DEFAULT NULL,\n `wheels` INTEGER DEFAULT NULL,\n `load_shape` TEXT DEFA...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nid,,the unique id number representing the cars,integer,\ntrain_id,train id,the counterpart id for trains that the cars belong to,integer,\nposition,,postion id of cars in the trains,integer,\"1-4:\ncommonsense e...
language_corpus
[ { "create_sql": "CREATE TABLE langs(lid INTEGER PRIMARY KEY AUTOINCREMENT,\n lang TEXT UNIQUE,\n locale TEXT UNIQUE,\n pages INTEGER DEFAULT 0, -- total pages in this language\n words INTEGER DEFA...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\npid,page id,page id of Wikipedia about Catalan language,integer,\nlid,language id,language id ,integer,\"commonsense evidence: \nlid=1 means it's Catalan language\"\npage,,wikipedia page id,integer,\nrevision,,w...
software_company
[ { "create_sql": "CREATE TABLE Demog\n(\n GEOID INTEGER\n constraint Demog_pk\n primary key,\n INHABITANTS_K REAL,\n INCOME_K REAL,\n A_VAR1 REAL,\n A_VAR2 REAL,\n A_VAR3 REAL,\n A_VAR4 REAL,\n A_VAR5 REAL,\n A_VAR6 ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nREFID,REFERENCE ID,unique id number identifying the customer,integer,\nREF_DATE,REFERENCE DATE,indicating the date when the mailing was sent,datetime,\nRESPONSE,,Actual response to the marketing incentive email ...
movie_platform
[ { "create_sql": "CREATE TABLE \"lists\"\n(\n user_id INTEGER\n references lists_users (user_id),\n list_id INTEGER not null\n primary key,\n list_title TEXT,\n list_movie_number INTEGER,\n list_update_timestamp_utc ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nmovie_id,,Movie ID related to the rating,integer,\nrating_id,,Rating ID on Mubi,integer,\nrating_url,,URL to the rating on Mubi,text,\nrating_score,,Rating score ranging from 1 (lowest) to 5 (highest),integer,\"...
movies_4
[ { "create_sql": "CREATE TABLE country\n(\n country_id INTEGER not null\n primary key,\n country_iso_code TEXT default NULL,\n country_name TEXT default NULL\n);", "table": "country" }, { "create_sql": "CREATE TABLE department\n(\n department_id INTEGER not null\n ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nmovie_id,movie id,\"the id of the movie\nMaps to movie(movie_id)\",integer,\nperson_id,person id,\"the id of the person\nMaps to person(person_id)\",integer,\ncharacter_name,character name,the character name,tex...
legislator
[ { "create_sql": "CREATE TABLE current\n(\n ballotpedia_id TEXT,\n bioguide_id TEXT,\n birthday_bio DATE,\n cspan_id REAL,\n fec_id TEXT,\n first_name TEXT,\n gender_bio TEXT,\n google_entity_id_id TEXT,\n govtrack_id ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\naddress,,the address of this legislator,text,\nbioguide,bioguide id,The alphanumeric ID for this legislator ,text,\ncaucus,,caucus,text,\"For independents, the party that the legislator caucuses with, using the ...
works_cycles
[ { "create_sql": "CREATE TABLE CountryRegion\n(\n CountryRegionCode TEXT not null\n primary key,\n Name TEXT not null\n unique,\n ModifiedDate DATETIME default current_timestamp not null\n);", "table": "CountryRegion...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nProductID,Product ID,The unique id number identifying the product.,integer,\nName,,Name of the product.,text,\nProductNumber,Product Number,The unique product identification number.,text,\nMakeFlag,Make Flag,The...
app_store
[ { "create_sql": "CREATE TABLE \"playstore\"\n(\n App TEXT,\n Category TEXT,\n Rating REAL,\n Reviews INTEGER,\n Size TEXT,\n Installs TEXT,\n Type TEXT,\n Price TEXT,\n \"Content Rating\" TEXT,\n Gen...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nApp,,Application name,text,\nCategory,,Category the app belongs to,text,\"FAMILY 18%\nGAME 11%\nOther (7725) 71%\"\nRating,,Overall user rating of the app (as when scraped),real,\nReviews,,Number of user reviews...
social_media
[ { "create_sql": "CREATE TABLE location\n(\n LocationID INTEGER\n constraint location_pk\n primary key,\n Country TEXT,\n State TEXT,\n StateCode TEXT,\n City TEXT\n);", "table": "location" }, { "create_sql": "CREATE TABLE user\n(\n UserID TEXT\n ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nLocationID,location id,unique id of the location,integer,\nCountry,,the country,text,\nState,,the state,text,\nStateCode,state code,state code,text,\nCity,,the city,text,", "table": "location" }, { "...
airline
[ { "create_sql": "CREATE TABLE \"Air Carriers\"\n(\n Code INTEGER\n primary key,\n Description TEXT\n);", "table": "Air Carriers" }, { "create_sql": "CREATE TABLE Airports\n(\n Code TEXT\n primary key,\n Description TEXT\n);", "table": "Airports" ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nCode,,the code of the air carriers,integer,\nDescription,,the description of air carriers,text,", "table": "Air Carriers" }, { "description": "original_column_name,column_name,column_description,data...
mental_health_survey
[ { "create_sql": "CREATE TABLE Question\n(\n questiontext TEXT,\n questionid INTEGER\n constraint Question_pk\n primary key\n);", "table": "Question" }, { "create_sql": "CREATE TABLE Survey\n(\n SurveyID INTEGER\n constraint Survey_pk\n primary key,\n...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nquestiontext,question text,The detailed text of the question.,text,\nquestionid,question id,The unique id of the question.,integer,Each questiontext can only have one unique questionid", "table": "Question" ...
food_inspection
[ { "create_sql": "CREATE TABLE `businesses` (\n `business_id` INTEGER NOT NULL,\n `name` TEXT NOT NULL,\n `address` TEXT DEFAULT NULL,\n `city` TEXT DEFAULT NULL,\n `postal_code` TEXT DEFAULT NULL,\n `latitude` REAL DEFAULT NULL,\n `longitude` REAL DEFAULT NULL,\n `phone_number` INTEGER DEFAULT NULL,\n ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nbusiness_id,business id,the unique id of the business ,integer,\ndate,,the date of the violation,date,\nviolation_type_id,violation type id,the unique type id of the violation,text,\nrisk_category,risk category,...
sales_in_weather
[ { "create_sql": "CREATE TABLE sales_in_weather\n(\n date DATE,\n store_nbr INTEGER,\n item_nbr INTEGER,\n units INTEGER,\n primary key (store_nbr, date, item_nbr)\n);", "table": "sales_in_weather" }, { "create_sql": "CREATE TABLE weather\n(\n station_nbr INTEGER,\n dat...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nstation_nbr,station number,the id of weather stations,integer,\ndate,,date,date,\ntmax,temperature max,max temperature,integer,\ntmin,temperature min,min temperature,integer,\"commonsense evidence:\ntemperature ...
music_tracker
[ { "create_sql": "CREATE TABLE \"torrents\"\n(\n groupName TEXT,\n totalSnatched INTEGER,\n artist TEXT,\n groupYear INTEGER,\n releaseType TEXT,\n groupId INTEGER,\n id INTEGER\n constraint torrents_pk\n primary key\n);", "table": "tor...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nindex,,index,integer,\nid,,release identifier which can be matched with id field in the torrents table,integer,\ntag,,tag,text,", "table": "tags" }, { "description": "original_column_name,column_name...
book_publishing_company
[ { "create_sql": "CREATE TABLE authors\n(\n au_id TEXT\n primary key,\n au_lname TEXT not null,\n au_fname TEXT not null,\n phone TEXT not null,\n address TEXT,\n city TEXT,\n state TEXT,\n zip TEXT,\n contract TEXT not null\n);", "table": "authors"...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\ntitle_id,,unique id number identifying title,text,\nlorange,low range,low range,integer,\nhirange,high range,high range,integer,\nroyalty,,royalty,integer,", "table": "roysched" }, { "description": "...
cars
[ { "create_sql": "CREATE TABLE country\n(\n origin INTEGER\n primary key,\n country TEXT\n);", "table": "country" }, { "create_sql": "CREATE TABLE price\n(\n ID INTEGER\n primary key,\n price REAL\n);", "table": "price" }, { "create_sql": "CREATE TABL...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nID,,the id of the car,integer,\nmodel_year,model year,year when the car model was introduced in the market,integer,\ncountry,,country id to which the car belongs,integer,\"Japan --> Asia \nUSA --> North America\...
beer_factory
[ { "create_sql": "CREATE TABLE customers\n(\n CustomerID INTEGER\n primary key,\n First TEXT,\n Last TEXT,\n StreetAddress TEXT,\n City TEXT,\n State TEXT,\n ZipCode INTEGER,\n Em...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nLocationID,location id,the id of the location,integer,\nLatitude,,the latitude of the location,real,\nLongitude,,the longitude of the location,real,\"commonsense evidence:\nprecise location / coordinate = POINT(...
regional_sales
[ { "create_sql": "CREATE TABLE Customers\n(\n CustomerID INTEGER\n constraint Customers_pk\n primary key,\n \"Customer Names\" TEXT\n);", "table": "Customers" }, { "create_sql": "CREATE TABLE Products\n(\n ProductID INTEGER\n constraint Products_pk\n ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nSalesTeamID,SalesTeam ID,unique sales team id,integer,\nSales Team,,sales team names,text,\nRegion,,the region where the state is located in,text,", "table": "Sales Team" }, { "description": "origina...
soccer_2016
[ { "create_sql": "CREATE TABLE Batting_Style\n(\n Batting_Id INTEGER\n primary key,\n Batting_hand TEXT\n);", "table": "Batting_Style" }, { "create_sql": "CREATE TABLE Bowling_Style\n(\n Bowling_Id INTEGER\n primary key,\n Bowling_skill TEXT\n);", "table": "...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nMatch_Id,,unique id for match,integer,\nTeam_1,team 1,the team id of the first team,integer,\nTeam_2,team 2,the team id for the second team,integer,\nMatch_Date,match date,the date of the match,date,yyyy-mm-dd\n...
cs_semester
[ { "create_sql": "CREATE TABLE \"course\"\n(\n course_id INTEGER\n constraint course_pk\n primary key,\n name TEXT,\n credit INTEGER,\n diff INTEGER\n);", "table": "course" }, { "create_sql": "CREATE TABLE prof\n(\n prof_id INTEGER\n constr...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nstudent_id,student id,the id numbe representing each student,integer,\ncapability,,\"the capability of student on research\n(Evaluated by the professor)\",integer,higher --> higher research ability / capability\...
shakespeare
[ { "create_sql": "CREATE TABLE \"chapters\"\n(\n id INTEGER\n primary key autoincrement,\n Act INTEGER not null,\n Scene INTEGER not null,\n Description TEXT not null,\n work_id INTEGER not null\n references works\n);", "table": "chapters" }, { ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nid,id,unique id number identifying the characters,integer,\nCharName,char name,character name,text,\nAbbrev,abbreviation,abbreviation. An abbreviation is a shortened form of a word or phrase.,text,\nDescription,...
authors
[ { "create_sql": "CREATE TABLE \"Author\"\n(\n Id INTEGER\n constraint Author_pk\n primary key,\n Name TEXT,\n Affiliation TEXT\n);", "table": "Author" }, { "create_sql": "CREATE TABLE \"Conference\"\n(\n Id INTEGER\n constraint Conference_p...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nPaperId,, Paper Id,integer,\nAuthorId,,Author Id,integer,\"commonsense reasoning: A paper can have more than one author. Co-authorship can be derived from (paper ID, author ID) pair. \"\nName,,Author Name (as wr...
movie_3
[ { "create_sql": "CREATE TABLE film_text\n(\n film_id INTEGER not null\n primary key,\n title TEXT not null,\n description TEXT null\n);", "table": "film_text" }, { "create_sql": "CREATE TABLE \"actor\"\n(\n actor_id INTEGER\n primary key autoincreme...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nfilm_id,film id,unique id number identifying the film,integer,\ntitle,title,title of the film,text,\ndescription,description,main content of the film,text,", "table": "film_text" }, { "description": ...
food_inspection_2
[ { "create_sql": "CREATE TABLE employee\n(\n employee_id INTEGER\n primary key,\n first_name TEXT,\n last_name TEXT,\n address TEXT,\n city TEXT,\n state TEXT,\n zip INTEGER,\n phone TEXT,\n title TEXT,\n salary INTEGER,\n s...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\npoint_id,point id,the unique id for the inspection point,integer,\nDescription,,the specific description of the inspection results,text,\ncategory,,the inspection category,text,\ncode,,the sanitary operating req...
movie
[ { "create_sql": "CREATE TABLE actor\n(\n ActorID INTEGER\n constraint actor_pk\n primary key,\n Name TEXT,\n \"Date of Birth\" DATE,\n \"Birth City\" TEXT,\n \"Birth Country\" TEXT,\n \"Height (Inches)\" INTEGER,\n Biography TEXT,\n ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nMovieID,movie id,the unique id for the movie,integer,\nActorID,actor id,the unique id for the actor,integer,\nCharacter Name,character name,the name of the character,text,\ncreditOrder,credit order,order of the ...
disney
[ { "create_sql": "CREATE TABLE characters\n(\n movie_title TEXT\n primary key,\n release_date TEXT,\n hero TEXT,\n villian TEXT,\n song TEXT,\n foreign key (hero) references \"voice-actors\"(character)\n);", "table": "characters" }, { "create_sql": "...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nYear,,The year the movie was released.,integer,\nStudio Entertainment[NI 1],,The studio entertainment segment of the Walt Disney Company.,real,\nDisney Consumer Products[NI 2],,The consumer products segment of t...
law_episode
[ { "create_sql": "CREATE TABLE Episode\n(\n episode_id TEXT\n primary key,\n series TEXT,\n season INTEGER,\n episode INTEGER,\n number_in_series INTEGER,\n title TEXT,\n summary TEXT,\n air_date DATE,\n episode_...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nperson_id,person id,the unique identifier for the person,text,\nname,,the name of the person,text,\nbirthdate,birth date,the date the person was born,date,\"if null, it means this birthdate of the person is not ...
chicago_crime
[ { "create_sql": "CREATE TABLE Community_Area\n(\n community_area_no INTEGER\n primary key,\n community_area_name TEXT,\n side TEXT,\n population TEXT\n);", "table": "Community_Area" }, { "create_sql": "CREATE TABLE District\n(\n district_no INTEG...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\niucr_no,iucr number,Unique identifier for the incident classification,text,\nprimary_description,primary description,The general description of the incident classification,text,\"commonsense evidence:\n\nIt's th...
sales
[ { "create_sql": "CREATE TABLE Customers\n(\n CustomerID INTEGER not null\n primary key,\n FirstName TEXT not null,\n MiddleInitial TEXT null,\n LastName TEXT not null\n);", "table": "Customers" }, { "create_sql": "CREATE TABLE Employees\n(\n EmployeeID IN...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nEmployeeID,Employee ID,the unique id of the employee,integer,\nFirstName,First Name,the employee's first name,text,\nMiddleInitial,Middle Initial,the employee's middle initial ,text,\nLastName,Last Name,the empl...
bike_share_1
[ { "create_sql": "CREATE TABLE \"station\"\n(\n id INTEGER not null\n primary key,\n name TEXT,\n lat REAL,\n long REAL,\n dock_count INTEGER,\n city TEXT,\n installation_date TEXT\n);", "table": "station" ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\ndate,,,text,\nmax_temperature_f,max temperature in Fahrenheit degree,max temperature in Fahrenheit degree,integer,\"commonsense evidence:\nIt represents the hottest temperature.\"\nmean_temperature_f,mean temper...
citeseer
[ { "create_sql": "CREATE TABLE cites\n(\n cited_paper_id TEXT not null,\n citing_paper_id TEXT not null,\n primary key (cited_paper_id, citing_paper_id)\n);", "table": "cites" }, { "create_sql": "CREATE TABLE paper\n(\n paper_id TEXT not null\n primary key,\n class_label TE...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\npaper_id,paper id,unique string ID of the paper,text,unique string ID of the paper\nword_cited_id,word cited id,rtype,text,whether each word in the vocabulary is present (indicated by 1) or absent (indicated by ...
car_retails
[ { "create_sql": "CREATE TABLE offices\n(\n officeCode TEXT not null\n primary key,\n city TEXT not null,\n phone TEXT not null,\n addressLine1 TEXT not null,\n addressLine2 TEXT,\n state TEXT,\n country TEXT not null,\n postalCode TEXT not null,\n ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nofficeCode,office code,unique ID of the office,text,unique ID of the office\ncity,city,,text,\nphone,,phone number,text,\naddressLine1,,addressLine1,text,\naddressLine2,,addressLine2,text,\"commonsense evidence:...
student_loan
[ { "create_sql": "CREATE TABLE bool\n(\n \"name\" TEXT default '' not null\n primary key\n);", "table": "bool" }, { "create_sql": "CREATE TABLE person\n(\n \"name\" TEXT default '' not null\n primary key\n);", "table": "person" }, { "create_sql": "CREATE TABLE disabled...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nname,,the name of the disabled students,text,", "table": "disabled" }, { "description": "original_column_name,column_name,column_description,data_format,value_description\nname,,student name who file...
olympics
[ { "create_sql": "CREATE TABLE city\n(\n id INTEGER not null\n primary key,\n city_name TEXT default NULL\n);", "table": "city" }, { "create_sql": "CREATE TABLE games\n(\n id INTEGER not null\n primary key,\n games_year INTEGER default NULL,\n...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nevent_id,event id,\"the id of the event\nMaps to event(id)\",integer,\ncompetitor_id,competitor id,\"the id of the competitor\nMaps to games_competitor(id)\",integer,\"commonsense evidence:\nThe number of compet...
address
[ { "create_sql": "CREATE TABLE CBSA\n(\n CBSA INTEGER\n primary key,\n CBSA_name TEXT,\n CBSA_type TEXT\n);", "table": "CBSA" }, { "create_sql": "CREATE TABLE state\n(\n abbreviation TEXT\n primary key,\n name TEXT\n);", "table": "state" }, { ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nzip_code,zip code,the zip code of the district,integer,\ndistrict,,the district,text,", "table": "zip_congress" }, { "description": "original_column_name,column_name,column_description,data_format,va...
music_platform_2
[ { "create_sql": "CREATE TABLE runs (\n run_at text not null,\n max_rowid integer not null,\n reviews_added integer not null\n );", "table": "runs" }, { "create_sql": "CREATE TABLE podcasts (\n podcast_id text primary key,\n itunes_id integer not null,\n s...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nrun_at,run at,The date and time of the podcast review creation.,text,\nmax_rowid,max row id,The id of max row of this run.,integer,\nreviews_added,reviews added,The number of reviews added in this run.,integer,"...
codebase_comments
[ { "create_sql": "CREATE TABLE \"Method\"\n(\n Id INTEGER not null\n primary key autoincrement,\n Name TEXT,\n FullComment TEXT,\n Summary TEXT,\n ApiCalls TEXT,\n CommentIsXml INTEGER,\n SampledAt INTEGER,\n SolutionId INTEGER,\n Lang ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nId ,,\"unique id number\nthat identifies methods\",integer,\nName ,,name of methods ,text,\"the second part is the task of this method\ndelimited by \"\".\"\"\"\nFullComment,Full Comment,full comment of this met...
human_resources
[ { "create_sql": "CREATE TABLE location\n(\n locationID INTEGER\n constraint location_pk\n primary key,\n locationcity TEXT,\n address TEXT,\n state TEXT,\n zipcode INTEGER,\n officephone TEXT\n);", "table": "location" }, { "create_sql": "CREATE...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nlocationID,location id,the unique id for location,integer,\nlocationcity,location city,the location city,text,\naddress,,the detailed address of the location,text,\nstate,,the state abbreviation,text,\nzipcode,z...
coinmarketcap
[ { "create_sql": "CREATE TABLE coins\n(\n id INTEGER not null\n primary key,\n name TEXT,\n slug TEXT,\n symbol TEXT,\n status TEXT,\n category TEXT,\n description TEXT,\n subreddit TEXT,\n notice TEXT,\n tags ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nid,,unique id number identifying coins,integer,\nname,,name of coins,text,\nslug,,slug names of coins,text,\nsymbol,,symbol of names of coins,text,\nstatus,,status of coins,text,\"commonsense reasoning:\n• activ...
superstore
[ { "create_sql": "CREATE TABLE people\n(\n \"Customer ID\" TEXT,\n \"Customer Name\" TEXT,\n Segment TEXT,\n Country TEXT,\n City TEXT,\n State TEXT,\n \"Postal Code\" INTEGER,\n Region TEXT,\n primary key (\"Customer ID\", Region)\n);"...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nProduct ID,,the id of products,text,\nProduct Name,,the name of products,text,\nCategory,,the categories of products,text,\"• Furniture \n• Office Supplies \n• Technology\"\nSub-Category,,the sub-categories of p...
genes
[ { "create_sql": "CREATE TABLE Classification\n(\n GeneID TEXT not null\n primary key,\n Localization TEXT not null\n);", "table": "Classification" }, { "create_sql": "CREATE TABLE Genes\n(\n GeneID TEXT not null,\n Essential TEXT not null,\n Class TEXT...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nGeneID1,gene id 1,identifier number of genes,text,\nGeneID2,gene id 2,identifier number of genes,text,\nType,,Type,text,\nExpression_Corr,Expression correlation score,Expression correlation score,real,\"range: (...
donor
[ { "create_sql": "CREATE TABLE \"essays\"\n(\n projectid TEXT,\n teacher_acctid TEXT,\n title TEXT,\n short_description TEXT,\n need_statement TEXT,\n essay TEXT\n);", "table": "essays" }, { "create_sql": "CREATE TABLE \"projects\"\n(\n proje...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nprojectid,project id,project's unique identifier,text,\nteacher_acctid,teacher_acctid,teacher's unique identifier (teacher that created a project),text,\nschoolid,schoolid,school's identifier (school where teach...
hockey
[ { "create_sql": "CREATE TABLE AwardsMisc\n(\n name TEXT not null\n primary key,\n ID TEXT,\n award TEXT,\n year INTEGER,\n lgID TEXT,\n note TEXT\n);", "table": "AwardsMisc" }, { "create_sql": "CREATE TABLE HOF\n(\n year INTEGER,\n hofID TEXT not null\n ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nType,,type of hockey games,text,\nCode,,abbreviated codes,text,\nFullname,,full names of code,text,", "table": "abbrev" }, { "description": "original_column_name,column_name,column_description,data_f...
talkingdata
[ { "create_sql": "CREATE TABLE `app_all`\n(\n `app_id` INTEGER NOT NULL,\n PRIMARY KEY (`app_id`)\n);", "table": "app_all" }, { "create_sql": "CREATE TABLE `app_events` (\n `event_id` INTEGER NOT NULL,\n `app_id` INTEGER NOT NULL,\n `is_installed` INTEGER NOT NULL,\n `is_active` INTEGER NOT...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\ndevice_id,device id,unique number of devices,integer,\ngender,,gender of the user who uses this device,text,\nage,,age of the user who uses this device,integer,\"• M: male;\n• F: female\"\ngroup,,group of the ag...
movielens
[ { "create_sql": "CREATE TABLE users\n(\n userid INTEGER default 0 not null\n primary key,\n age TEXT not null,\n u_gender TEXT not null,\n occupation TEXT not null\n);", "table": "users" }, { "create_sql": "CREATE TABLE \"directors\"\n(\n directorid INTEGE...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\ndirectorid,director id,unique identification number of actors directors,integer,\nd_quality ,director quality,director quality ,integer,\"higher value is better, lower is the worse\"\navg_revenue,average revenue...
computer_student
[ { "create_sql": "CREATE TABLE course\n(\n course_id INTEGER\n constraint course_pk\n primary key,\n courseLevel TEXT\n);", "table": "course" }, { "create_sql": "CREATE TABLE person\n(\n p_id INTEGER\n constraint person_pk\n primary key,\n p...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\np_id,person id,id number identifying each person,integer,\np_id_dummy,person id dummy,the id number identifying the advisor,integer,", "table": "advisedBy" }, { "description": "original_column_name,c...
college_completion
[ { "create_sql": "CREATE TABLE institution_details\n(\n unitid INTEGER\n constraint institution_details_pk\n primary key,\n chronname TEXT,\n city TEXT,\n state TE...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nunitid,Unit ID number,unique Education Unit ID number,integer,\nchronname,,Institution name,text,\ncity,,Institution city,text,\nstate,,Institution state,text,\nlevel,,Level of institution,text,\"commonsense evi...
craftbeer
[ { "create_sql": "CREATE TABLE breweries\n(\n id INTEGER not null\n primary key,\n name TEXT null,\n city TEXT null,\n state TEXT null\n);", "table": "breweries" }, { "create_sql": "CREATE TABLE \"beers\"\n(\n id INTEGER not null\n primary key,\n ...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nid,id,unique ID of the breweries,integer,\nname,name,name of the breweries,text,\ncity,,city,text,\nstate,,state,text,", "table": "Breweries" }, { "description": "original_column_name,column_name,col...
shooting
[ { "create_sql": "CREATE TABLE incidents\n(\n case_number TEXT not null\n primary key,\n date DATE not null,\n location TEXT not null,\n subject_statuses TEXT not null,\n subject_weapon TEXT not null,\...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\ncase_number,case number,case number,text,\nrace,race,race,text,\ngender,,gender,text,\"M: male;\n\nF: female\"\nlast_name,last name,last name,text,\nfirst_name,first name,first name,text,\nfull_name,full name,fu...
restaurant
[ { "create_sql": "CREATE TABLE geographic\n(\n city TEXT not null\n primary key,\n county TEXT null,\n region TEXT null\n);", "table": "geographic" }, { "create_sql": "CREATE TABLE generalinfo\n(\n id_restaurant INTEGER not null\n primary key,\n label TE...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description,Unnamed: 5,Unnamed: 6\nid_restaurant,id restaurant,the unique id for the restaurant,integer,,,\nstreet_num,street number,the street number of the restaurant,integer,,,\nstreet_name,street name,the street name of ...
retails
[ { "create_sql": "CREATE TABLE `customer` (\n `c_custkey` INTEGER NOT NULL,\n `c_mktsegment` TEXT DEFAULT NULL,\n `c_nationkey` INTEGER DEFAULT NULL,\n `c_name` TEXT DEFAULT NULL,\n `c_address` TEXT DEFAULT NULL,\n `c_phone` TEXT DEFAULT NULL,\n `c_acctbal` REAL DEFAULT NULL,\n `c_comment` TEXT DEFAULT N...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nc_custkey,customer key,unique id number identifying the customer,integer,\nc_mktsegment,customer market segment,the segment of the customer,text,\nc_nationkey,customer nation key,the nation key number of the cus...
menu
[ { "create_sql": "CREATE TABLE Dish\n(\n id INTEGER\n primary key,\n name TEXT,\n description TEXT,\n menus_appeared INTEGER,\n times_appeared INTEGER,\n first_appeared INTEGER,\n last_appeared INTEGER,\n lowest_price REAL,\n highest_price REAL\n...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nid,,unique id number indicating the dishes,integer,\nname,,the name of the dish,text,\ndescription,,description of the dish ,text,(no value)\nmenus_appeared,menus appeared,how many menus have this dish ,integer,...
university
[ { "create_sql": "CREATE TABLE country\n(\n id INTEGER not null\n primary key,\n country_name TEXT default NULL\n);", "table": "country" }, { "create_sql": "CREATE TABLE ranking_system\n(\n id INTEGER not null\n primary key,\n system_name TEXT defa...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nuniversity_id,university id,id of the university,integer,\nyear,,,integer,\nnum_students,number of students,the total number of students for the year,integer,\nstudent_staff_ratio,student staff ratio,,real,commo...
image_and_language
[ { "create_sql": "CREATE TABLE ATT_CLASSES\n(\n ATT_CLASS_ID INTEGER default 0 not null\n primary key,\n ATT_CLASS TEXT not null\n);", "table": "ATT_CLASSES" }, { "create_sql": "CREATE TABLE OBJ_CLASSES\n(\n OBJ_CLASS_ID INTEGER default 0 not null\n primary key,\n OB...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nOBJ_CLASS_ID,OBJECT CLASS ID,unique id number identifying object classes,integer,\nOBJ_CLASS,OBJECT CLASS,the explanation about object classes,text,", "table": "OBJ_CLASSES" }, { "description": "orig...
cookbook
[ { "create_sql": "CREATE TABLE Ingredient\n(\n ingredient_id INTEGER\n primary key,\n category TEXT,\n name TEXT,\n plural TEXT\n);", "table": "Ingredient" }, { "create_sql": "CREATE TABLE Recipe\n(\n recipe_id INTEGER\n primary key,\n tit...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nquantity_id,quantity id,the unique identifier for the quantity,integer,\nrecipe_id,recipe id,the id of the recipe,integer,\ningredient_id,ingredient id,the id of the ingredient,integer,\nmax_qty,maximum quantity...
retail_world
[ { "create_sql": "CREATE TABLE Categories\n(\n CategoryID INTEGER PRIMARY KEY AUTOINCREMENT,\n CategoryName TEXT,\n Description TEXT\n);", "table": "Categories" }, { "create_sql": "CREATE TABLE Customers\n(\n CustomerID INTEGER PRIMARY KEY AUTOINCREMENT,\n CustomerName TEXT,\n Conta...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nOrderID,Order ID,the unique id for orders,integer,\nCustomerID,Customer ID,the unique id for customers,text,\nEmployeeID,Employee ID,the unique id for employees,integer,\nOrderDate,Order Date,the order date,date...
world
[ { "create_sql": "CREATE TABLE `City` (\n `ID` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,\n `Name` TEXT NOT NULL DEFAULT '',\n `CountryCode` TEXT NOT NULL DEFAULT '',\n `District` TEXT NOT NULL DEFAULT '',\n `Population` INTEGER NOT NULL DEFAULT 0,\n FOREIGN KEY (`CountryCode`) REFERENCES `Country` (`Code...
[ { "description": "original_column_name,column_name,column_description,data_format,value_description\nCode,,the unique country code of the country,text,\nName,,the country name,text,\nContinent,,the continent that the country locates,text,\nRegion,,the region that the country locates,text,\nSurfaceArea,Surface A...