Dataset Viewer
Auto-converted to Parquet Duplicate
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 ...
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
12