anon commited on
Commit
b897ff0
·
1 Parent(s): da9ff5a

Initial dataset upload

Browse files
.gitattributes CHANGED
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ *.sqlite filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - text-generation
7
+ - question-answering
8
+ tags:
9
+ - text-to-sql
10
+ - ambiguity
11
+ configs:
12
+ - config_name: default
13
+ data_files: tasks.jsonl
14
+ size_categories:
15
+ - n<1K
16
+ ---
17
+
18
+ # ARCS
19
+
20
+ Ambiguous text-to-SQL benchmark. 311 task instances across 6 SQLite databases.
21
+
22
+ ## Files
23
+
24
+ - `tasks.jsonl` — one row per intended interpretation.
25
+ - `databases/sqlite/*.sqlite` — databases referenced by the `db` field.
26
+ - `databases/column_meanings.json` — column-level descriptions.
27
+
28
+ ## Loading
29
+
30
+ ```python
31
+ from datasets import load_dataset
32
+ ds = load_dataset("kiaw73b5o7a/arcs-bench", split="train")
33
+ ```
34
+
35
+ Most rows omit `gold_queries` to avoid label leakage; a small sample retains it.
databases/column_meanings.json ADDED
@@ -0,0 +1,390 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "retails|customer|c_custkey": "The 'customer key' is an integer column in the 'customer' table of the 'retails' database, serving as a unique identifier for each customer.",
3
+ "retails|customer|c_mktsegment": "In the 'customer' table of the 'retails' database, the 'customer market segment' text column categorizes customers into specific segments: FURNITURE, HOUSEHOLD, BUILDING, AUTOMOBILE, MACHINERY.",
4
+ "retails|customer|c_nationkey": "The customer nation key is an integer representing the nation's identifier for a customer in the 'customer' table of the 'retails' database.",
5
+ "retails|customer|c_name": "In the 'retails' database, within the 'customer' table, the 'customer name' column (text type) stores the names of customers, e.g., 'Customer#000116910'.",
6
+ "retails|customer|c_address": "The 'customer address' column in the 'customer' table of the 'retails' database stores the address of the customer as text, with examples like 'kuGvwGZFxS', 'm,tknVITPCpGoRo', ',Se5ELsdy1vs'.",
7
+ "retails|customer|c_phone": "The 'customer phone' column in the 'customer' table of the 'retails' database stores the customer's phone number as text, with examples like '461-932-3703'.",
8
+ "retails|customer|c_acctbal": "In the 'customer' table of the 'retails' database, the 'customer account balance' column, of type real, indicates the financial balance in a customer's account. A negative value (c_acctbal < 0) signifies the account is in debt.",
9
+ "retails|customer|c_comment": "In the 'retails' database, within the 'customer' table, the 'customer comment' column stores text-type comments made by customers, mistakenly including phone numbers as examples.",
10
+ "retails|lineitem|l_shipdate": "The 'line item ship date' column in the 'lineitem' table of the 'retails' database stores the date a line item was shipped, formatted as a date (e.g., '1997-07-28').",
11
+ "retails|lineitem|l_orderkey": "Integer identifier for each line item's order in the 'lineitem' table of the 'retails' database.",
12
+ "retails|lineitem|l_discount": "In the 'retails' database, the 'lineitem' table has a 'line item discount' column of type real, indicating the discount applied to a line item, where a value of 0.1 represents a 10% discount.",
13
+ "retails|lineitem|l_extendedprice": "The \"line item extended price\" column in the \"lineitem\" table of the \"retails\" database stores the full price of a line item before any discounts are applied. The discounted price can be calculated as the product of the extended price and (1 minus the discount rate).",
14
+ "retails|lineitem|l_suppkey": "Integer identifier for a supplier in the 'lineitem' table of the 'retails' database.",
15
+ "retails|lineitem|l_quantity": "In the 'retails' database, within the 'lineitem' table, the 'line item quantity' column, an integer, represents the quantity of a line item.",
16
+ "retails|lineitem|l_returnflag": "The \"line item return flag\" column in the \"lineitem\" table of the \"retails\" database is a text field indicating the return status of an item. It uses 'R' to denote returned items and both 'A' and 'N' to signify items that have not been returned. Possible values are ['R', 'N', 'A'].",
17
+ "retails|lineitem|l_partkey": "Integer identifier for a part in a line item within the 'lineitem' table of the 'retails' database.",
18
+ "retails|lineitem|l_linestatus": "The \"line item line status\" column in the \"lineitem\" table of the \"retails\" database is a text field indicating the status of a line item, with 'O' representing an open status and 'F' indicating a finalized status.",
19
+ "retails|lineitem|l_tax": "The \"line item tax\" column in the \"lineitem\" table of the \"retails\" database represents the tax applied to a line item, calculated as part of the total charge formula: charge = l_extendedprice * (1 - l_discount) * (1 + l_tax), where it directly influences the final charge by adjusting the price after discount.",
20
+ "retails|lineitem|l_commitdate": "The 'line item commit date' column in the 'lineitem' table of the 'retails' database stores the date when each line item was committed, formatted as a date (YYYY-MM-DD).",
21
+ "retails|lineitem|l_receiptdate": "The \"line item receipt date\" column in the \"lineitem\" table of the \"retails\" database stores dates indicating when a line item was received. It is used to calculate shipping speed by subtracting the commit date from the receipt date, with shorter intervals indicating faster shipping. Example values include '1996-10-26', '1994-07-21', and '1998-07-15'.",
22
+ "retails|lineitem|l_shipmode": "The \"line item ship mode\" column in the \"lineitem\" table of the \"retails\" database stores the shipping method for each line item as text, with possible values including 'MAIL', 'REG AIR', 'TRUCK', 'FOB', 'SHIP', 'AIR', and 'RAIL'.",
23
+ "retails|lineitem|l_linenumber": "In the 'retails' database, within the 'lineitem' table, the 'line item line number' column, an integer, serves as a unique identifier for each line item.",
24
+ "retails|lineitem|l_shipinstruct": "In the 'retails' database, the 'lineitem' table's 'line item ship instruct' text column specifies shipping instructions for a line item, with options 'DELIVER IN PERSON', 'COLLECT COD', 'TAKE BACK RETURN', or 'NONE'.",
25
+ "retails|lineitem|l_comment": "The \"line item comment\" column in the \"lineitem\" table of the \"retails\" database stores textual comments related to individual line items, with examples including brief descriptions or notes like 'quickly bold pack', 'slyly silent deposits hinder fluffily', and 'even express theodolites are. even in'.",
26
+ "retails|nation|n_nationkey": "Unique identifier for each nation in the 'nation' table of the 'retails' database.",
27
+ "retails|nation|n_name": "The 'nation name' column in the 'nation' table of the 'retails' database stores text entries representing the names of different nations, such as 'IRAQ', 'IRAN', and 'FRANCE'.",
28
+ "retails|nation|n_regionkey": "Integer identifier for the region to which the nation belongs.",
29
+ "retails|nation|n_comment": "The \"nation comment\" column in the \"nation\" table of the \"retails\" database stores textual descriptions related to various nations.",
30
+ "retails|orders|o_orderdate": "The 'order date' column in the 'orders' table of the 'retails' database stores the date when an order was placed, using a 'date' format. It implies that orders with earlier dates are prioritized for delivery. Example values include '1997-10-28', '1992-05-23', '1992-10-06'.",
31
+ "retails|orders|o_orderkey": "The 'order key' column in the 'orders' table of the 'retails' database is an integer that serves as a unique identifier for each order.",
32
+ "retails|orders|o_custkey": "The 'order customer key' is an integer identifier for customers in the 'orders' table of the 'retails' database.",
33
+ "retails|orders|o_orderpriority": "In the 'retails' database, the 'orders' table contains a 'order priority' text column indicating the urgency of an order. Values range from '0-Urgent' to '5-LOW', with a lower number signifying higher priority.",
34
+ "retails|orders|o_shippriority": "In the 'orders' table of the 'retails' database, the 'order ship priority' column, an integer, indicates the shipping priority level of an order.",
35
+ "retails|orders|o_clerk": "The 'order clerk' column in the 'orders' table of the 'retails' database stores the identifier of the clerk responsible for the order, as text. Example identifiers include 'Clerk#000000957', 'Clerk#000000241', and 'Clerk#000000756'.",
36
+ "retails|orders|o_orderstatus": "In the 'retails' database, within the 'orders' table, the 'order status' column of type text indicates the status of an order, with possible values 'P' (Pending), 'F' (Fulfilled), or 'O' (Open).",
37
+ "retails|orders|o_totalprice": "In the 'orders' table of the 'retails' database, the 'order total price' column, of type real, represents the total price of the order.",
38
+ "retails|orders|o_comment": "In the 'retails' database, within the 'orders' table, the 'order comment' column of type 'text' stores comments describing the order, with possible values 'P', 'F', 'O' indicating specific order statuses or types.",
39
+ "retails|part|p_partkey": "In the 'retails' database, within the 'part' table, the 'part key' column is an integer that serves as a unique identifier for each part.",
40
+ "retails|part|p_type": "The 'part type' column in the 'part' table of the 'retails' database stores text descriptions of part types, including material and size attributes, e.g., 'MEDIUM BRUSHED STEEL'.",
41
+ "retails|part|p_size": "In the 'part' table of the 'retails' database, the 'part size' column, an integer, indicates the part's size, with larger numbers representing larger parts.",
42
+ "retails|part|p_brand": "The 'part brand' column in the 'part' table of the 'retails' database stores text information indicating the brand associated with each part, with examples including 'Brand#15', 'Brand#22', and 'Brand#54'.",
43
+ "retails|part|p_name": "The 'part name' column in the 'part' table of the 'retails' database stores text descriptions of parts, typically as color-themed names.",
44
+ "retails|part|p_container": "The 'part container' column in the 'part' table of the 'retails' database stores text descriptions of the types of containers used for parts, with examples including 'SM BOX', 'LG DRUM', and 'JUMBO DRUM'.",
45
+ "retails|part|p_mfgr": "The \"part manufacturer\" column in the \"part\" table of the \"retails\" database is a text field indicating the entity that made the part, with possible values being 'Manufacturer#1', 'Manufacturer#2', 'Manufacturer#3', 'Manufacturer#4', and 'Manufacturer#5'.",
46
+ "retails|part|p_retailprice": "The 'part retail price' column in the 'part' table of the 'retails' database stores the retail price of a part as a real number.",
47
+ "retails|part|p_comment": "The \"part comment\" column in the \"part\" table of the \"retails\" database stores textual descriptions or remarks about parts, with examples including 'stealthy dependen', 'final sheaves detec', and 'blithely dogged reque'.",
48
+ "retails|partsupp|ps_partkey": "Unique identifier for each part in the 'partsupp' table of the 'retails' database.",
49
+ "retails|partsupp|ps_suppkey": "Unique integer ID for identifying supply keys in the partsupp table of the retails database.",
50
+ "retails|partsupp|ps_supplycost": "The 'part supply cost' column in the 'partsupp' table of the 'retails' database, of type real, represents the cost of supplying a part. It is used to calculate profit in the formula: profit = (l_extendedprice * (1 - l_discount)) - (ps_supplycost * l_quantity), where 'l_quantity' is sourced from the 'lineitem' table.",
51
+ "retails|partsupp|ps_availqty": "In the 'retails' database, within the 'partsupp' table, the 'part supply available quantity' column (integer type) indicates the current stock level of parts. Values under 10 suggest a stock nearing depletion.",
52
+ "retails|partsupp|ps_comment": "The \"part supply comment\" column in the \"partsupp\" table of the \"retails\" database stores textual descriptions related to the supply of parts, with examples including comments on supply conditions or characteristics.",
53
+ "retails|region|r_regionkey": "Unique identifier for each region in the 'region' table of the 'retails' database.",
54
+ "retails|region|r_name": "The 'region name' column in the 'region' table of the 'retails' database is of type text and specifies the name of the region, with possible values being 'AFRICA', 'EUROPE', 'ASIA', 'AMERICA', 'MIDDLE EAST'.",
55
+ "retails|region|r_comment": "The 'region comment' column in the 'region' table of the 'retails' database stores text descriptions for various regions, including 'AFRICA', 'EUROPE', 'ASIA', 'AMERICA', and 'MIDDLE EAST'.",
56
+ "retails|supplier|s_suppkey": "The 'supply key' is an integer column in the 'supplier' table of the 'retails' database, serving as a unique identifier for each supply.",
57
+ "retails|supplier|s_nationkey": "Integer identifier for the nation of the supplier in the 'supplier' table of the 'retails' database.",
58
+ "retails|supplier|s_comment": "The 'supplier comment' column in the 'supplier' table of the 'retails' database stores text comments describing suppliers, potentially including their geographical origin from predefined regions: AFRICA, EUROPE, ASIA, AMERICA, MIDDLE EAST.",
59
+ "retails|supplier|s_name": "The 'supplier name' column in the 'supplier' table of the 'retails' database stores the name of the supplier as text, with examples like 'Supplier#000003408', 'Supplier#000000471', and 'Supplier#000006865'.",
60
+ "retails|supplier|s_address": "The 'supplier address' column in the 'supplier' table of the 'retails' database stores the address of the supplier as text. Example values include 'CQX h od6xo8Fx3ol674t2g916WKO0Wcf1hC0', 'sloF9r52cnYiNgix2Hxai3qABFZybqnXUs6heBL', '61D0TZqpRlCnUvwIddZXv3wUD'.",
61
+ "retails|supplier|s_phone": "The 'supplier phone' column in the 'supplier' table of the 'retails' database stores the supplier's phone number as text, with examples like '790-342-8243'.",
62
+ "retails|supplier|s_acctbal": "In the 'retails' database, within the 'supplier' table, the 'supplier account balance' column (type: real) indicates the financial balance of a supplier's account. A negative value signifies the account is in debt.",
63
+ "professional_basketball|awards_players|playerID": "The 'playerID' column in the 'awards_players' table of the 'professional_basketball' database is a text field that uniquely identifies each player with an ID number. Example IDs include 'gervige01', 'johnsma02', and 'reedwi01'.",
64
+ "professional_basketball|awards_players|award": "The 'award' column in the 'awards_players' table of the 'professional_basketball' database stores the name of the award given to players, such as 'Most Valuable Player', 'J. Walter Kennedy Citizenship Award', and 'Finals MVP'. It is of type text.",
65
+ "professional_basketball|awards_players|year": "Year the award was given in professional_basketball.awards_players.",
66
+ "professional_basketball|awards_players|lgID": "The 'league ID' column in the 'awards_players' table of the 'professional_basketball' database identifies the league to which an award pertains, primarily including \"NBA\" & \"ABA\" among all possible values ['ABL1', 'ABA', 'NBA', 'NBL'].",
67
+ "professional_basketball|awards_players|note": "The 'note' column in the 'awards_players' table of the 'professional_basketball' database is of type text and serves to provide notifications. A value of \"null\" indicates no special notes, while \"tie\" denotes a tie between coaches for certain awards.",
68
+ "professional_basketball|awards_players|pos": "In the 'awards_players' table of the 'professional_basketball' database, the 'position' column (text type) indicates the player's position on the court, with possible values 'F/G' (Forward/Guard), 'G' (Guard), 'F' (Forward), 'F/C' (Forward/Center), and 'C' (Center).",
69
+ "professional_basketball|coaches|coachID": "The 'coachID' column in the 'coaches' table of the 'professional_basketball' database stores unique text identifiers for each coach, such as 'bachjo01', 'rosegl01', and 'blakebi01'.",
70
+ "professional_basketball|coaches|year": "Year the coach served in professional basketball.",
71
+ "professional_basketball|coaches|tmID": "In the 'coaches' table of the 'professional_basketball' database, the 'team ID' column (text type) stores the abbreviated names of teams.",
72
+ "professional_basketball|coaches|lgID": "The 'league ID' column in the 'coaches' table of the 'professional_basketball' database is a text field representing the name of the basketball league. It primarily includes categories \"NBA\" & \"ABA\" among all possible values ['PBLA', 'ABA', 'NBA', 'NPBL', 'ABL1'].",
73
+ "professional_basketball|coaches|stint": "The 'stint' column, an integer, represents the duration a coach has spent with the team.",
74
+ "professional_basketball|coaches|won": "In the 'coaches' table of the 'professional_basketball' database, the 'won' column, an integer, records the total games won by a coach, where '0' signifies no wins.",
75
+ "professional_basketball|coaches|lost": "In the 'coaches' table of the 'professional_basketball' database, the 'lost' column, an integer, records the number of games a coach has lost, where 0 signifies winning all games.",
76
+ "professional_basketball|coaches|post_wins": "In the 'coaches' table of the 'professional_basketball' database, the 'post season wins' column, an integer, records the count of playoff game victories a coach has achieved. A value of 0 indicates no playoff wins, potentially implying non-participation in the post-season.",
77
+ "professional_basketball|coaches|post_losses": "In the 'coaches' table of the 'professional_basketball' database, the 'post season losses' column, an integer, records the total playoff games a coach's team lost. A value of 0 indicates the team won all its playoff games, while both wins and losses being 0 suggests non-participation in the playoffs.",
78
+ "professional_basketball|draft|id": "Unique identifier for each row in the 'draft' table of the 'professional_basketball' database.",
79
+ "professional_basketball|draft|draftYear": "The 'draftYear' column, an integer, indicates the year a draft occurred in the 'draft' table of the 'professional_basketball' database.",
80
+ "professional_basketball|draft|draftRound": "In the 'draft' table of the 'professional_basketball' database, the 'draftRound' integer column indicates the draft round number for a player, where 0 means no draft occurred that year, and 1 signifies a first-round pick.",
81
+ "professional_basketball|draft|draftSelection": "In the 'draft' table of the 'professional_basketball' database, the 'league ID' integer column indicates the draft selection position of a player, where '0' means no draft information available, and other integers represent the player's selection order in the draft round.",
82
+ "professional_basketball|draft|draftOverall": "The \"draft overall rank\" column, an integer, indicates the player's draft position for the year in the \"draft\" table of the \"professional_basketball\" database.",
83
+ "professional_basketball|draft|tmID": "The 'team ID' column in the 'draft' table of the 'professional_basketball' database stores the abbreviated names of teams as text, representing the team name. Example values include 'MMF', 'CHS', 'MMT'.",
84
+ "professional_basketball|draft|firstName": "In the 'draft' table of the 'professional_basketball' database, the 'firstName' column (type: text) stores the first name of the player, with examples like 'Mychal', 'Lindbergh', 'Swede'.",
85
+ "professional_basketball|draft|lastName": "The 'lastName' column in the 'draft' table of the 'professional_basketball' database stores text data representing the last names of basketball players, with examples including 'Akin', 'Acres', and 'Applegate'.",
86
+ "professional_basketball|draft|suffixName": "The 'suffixName' text column in the 'draft' table of the 'professional_basketball' database stores the suffix part of a player's name, with 'Jr.' as the only possible value.",
87
+ "professional_basketball|draft|playerID": "The 'playerID' column in the 'draft' table of the 'professional_basketball' database stores unique text identifiers for each player, such as 'ruffnpa01', 'masonro01', 'hollabr01'.",
88
+ "professional_basketball|draft|draftFrom": "The 'draftFrom' text column in the 'draft' table of the 'professional_basketball' database records the universities or institutions players were drafted from, including examples like 'Augustana', 'Tennessee Polytechnic', and 'Jakutsk (Russia)'.",
89
+ "professional_basketball|draft|lgID": "The 'league ID' column in the 'draft' table of the 'professional_basketball' database stores the league name as text, primarily indicating whether the entry pertains to the \"NBA\" or \"ABA\" league.",
90
+ "professional_basketball|player_allstar|playerID": "The 'playerID' column in the 'player_allstar' table of the 'professional_basketball' database is a text field that uniquely identifies each player with an ID number. Example IDs include 'robintr01', 'brianfr01', and 'washike01'.",
91
+ "professional_basketball|player_allstar|first_name": "The 'first_name' column in the 'player_allstar' table of the 'professional_basketball' database stores text values representing the first names of basketball players, with examples including 'Gerald', 'Ken', and 'Terrell'.",
92
+ "professional_basketball|player_allstar|last_name": "The 'last_name' column in the 'player_allstar' table of the 'professional_basketball' database stores the player's last name as text, with examples including 'Lee', 'Taylor', and 'Shelton'.",
93
+ "professional_basketball|player_allstar|season_id": "The 'season_id' column, an integer, represents the unique identifier for each basketball season.",
94
+ "professional_basketball|player_allstar|conference": "The 'conference' column in the 'player_allstar' table of the 'professional_basketball' database indicates the conference (either 'West' or 'East') to which players are affiliated. Despite the presence of other values ('Allstars', 'Denver', 'Weset'), only 'West' and 'East' are relevant categories.",
95
+ "professional_basketball|player_allstar|league_id": "The 'league ID' column in the 'player_allstar' table of the 'professional_basketball' database is a text field that specifies the name of the league in which the player participated, with only two possible values: 'ABA' or 'NBA'.",
96
+ "professional_basketball|player_allstar|games_played": "In the 'player_allstar' table of the 'professional_basketball' database, the 'games_played' integer column indicates the number of all-star games a player participated in during a specific season, typically 1.",
97
+ "professional_basketball|player_allstar|minutes": "In the 'player_allstar' table of the 'professional_basketball' database, the 'minutes' column (integer type) records the number of minutes a player attended in a game, e.g., a value of 18 indicates the player played for 18 minutes.",
98
+ "professional_basketball|player_allstar|points": "In the 'player_allstar' table of the 'professional_basketball' database, the 'points' column, an integer type, records the number of points a player scores, where '19' signifies scoring 19 points. A null value indicates the player did not score any points.",
99
+ "professional_basketball|player_allstar|o_rebounds": "In the 'player_allstar' table of the 'professional_basketball' database, the 'offense rebounds' column, an integer type, records the number of offensive rebounds by a player, where 'null' or 'empty' signifies no offensive rebounds, and '1' indicates one offensive rebound.",
100
+ "professional_basketball|player_allstar|d_rebounds": "In the 'player_allstar' table of the 'professional_basketball' database, the 'defense rebounds' column, an integer type, records the number of defensive rebounds by a player, where 'empty' or 'null' signifies no defensive rebounds.",
101
+ "professional_basketball|player_allstar|rebounds": "In the 'player_allstar' table of the 'professional_basketball' database, the 'rebounds' column, an integer type, records the sum of offensive and defensive rebounds a player has secured. A value of 'null' or empty indicates no rebounds were recorded, while a numerical value represents the total rebounds achieved.",
102
+ "professional_basketball|player_allstar|assists": "In the 'player_allstar' table of the 'professional_basketball' database, the 'assistants' column, an integer type, records the number of assistants a player has, with null or empty values indicating none.",
103
+ "professional_basketball|player_allstar|steals": "In the 'player_allstar' table of the 'professional_basketball' database, the 'steals' column, an integer type, records the number of steals a player achieved, where null or empty values indicate none.",
104
+ "professional_basketball|player_allstar|blocks": "In the 'player_allstar' table of the 'professional_basketball' database, the 'blocks' column, an integer type, records the number of blocks a player made, where 'null' or empty signifies none.",
105
+ "professional_basketball|player_allstar|turnovers": "In the 'player_allstar' table of the 'professional_basketball' database, the 'turnovers' column, an integer type, records the number of turnovers a player made, with null or empty values indicating none.",
106
+ "professional_basketball|player_allstar|personal_fouls": "In the 'player_allstar' table of the 'professional_basketball' database, the 'personal_fouls' column, an integer type, records the number of personal fouls committed by a player. A null or empty value indicates no fouls were committed.",
107
+ "professional_basketball|player_allstar|fg_attempted": "In the 'player_allstar' table of the 'professional_basketball' database, the 'field goal attempted' integer column records the number of field goal attempts by a player, where 'null' or an empty value indicates no attempts were made.",
108
+ "professional_basketball|player_allstar|fg_made": "In the 'player_allstar' table of the 'professional_basketball' database, the 'field goal made' integer column records the number of successful field goals by a player, where null or empty values indicate none were made.",
109
+ "professional_basketball|player_allstar|ft_attempted": "In the 'player_allstar' table of the 'professional_basketball' database, the 'free throw attempted' integer column records the number of free throw attempts by a player, where 'null' or empty signifies no attempts.",
110
+ "professional_basketball|player_allstar|ft_made": "In the 'player_allstar' table of the 'professional_basketball' database, the 'free throw made' integer column records the number of successful free throws by a player, where 'null' or empty signifies none made.",
111
+ "professional_basketball|player_allstar|three_attempted": "In the 'player_allstar' table of the 'professional_basketball' database, the 'three point attempted' integer column records the number of three-point shots a player attempted during an all-star game, where 'null' or an empty value indicates no attempts were made.",
112
+ "professional_basketball|player_allstar|three_made": "In the 'player_allstar' table of the 'professional_basketball' database, the 'three point made' integer column records the number of three-point shots successfully made by a player, where 'null' or an empty value indicates no three-point shots were made.",
113
+ "professional_basketball|players|playerID": "The 'playerID' column in the 'players' table of the 'professional_basketball' database stores unique text identifiers for each player, such as 'higgiji01', 'nixdy01', and 'ewingpa01'.",
114
+ "professional_basketball|players|useFirst": "Stores the first names of professional basketball players.",
115
+ "professional_basketball|players|firstName": "The 'firstName' column in the 'players' table of the 'professional_basketball' database stores text values representing the first names of basketball players, such as 'Arnitz', 'Gaylord', and 'Jewell'.",
116
+ "professional_basketball|players|middleName": "The 'middleName' column in the 'players' table of the 'professional_basketball' database stores the player's middle name as text, with examples including 'Ellerbe', 'Gladstone', and 'Edmondson'.",
117
+ "professional_basketball|players|lastName": "The 'lastName' column in the 'players' table of the 'professional_basketball' database stores text values representing the last names of basketball players, such as 'Grace', 'Toney', and 'Putman'.",
118
+ "professional_basketball|players|nameGiven": "The 'nameGiven' column in the 'players' table of the 'professional_basketball' database stores text values representing players' first names.",
119
+ "professional_basketball|players|fullGivenName": "The 'fullGivenName' column in the 'players' table of the 'professional_basketball' database stores text-type data representing the complete given names of basketball players, excluding any nicknames or professional monikers.",
120
+ "professional_basketball|players|nameSuffix": "The 'nameSuffix' column in the 'players' table of the 'professional_basketball' database stores text values representing the suffix part of a player's name, such as generational titles ('Jr.', 'Sr.', 'II', 'III', 'IV') or the literal 'nameSuffix'.",
121
+ "professional_basketball|players|nameNick": "Alias or informal names of professional basketball players.",
122
+ "professional_basketball|players|pos": "The 'position' column in the 'players' table of the 'professional_basketball' database stores the player's position(s) as text, indicating whether they play as Center (C), Forward (F), or Guard (G), with some players occupying two positions simultaneously, denoted by a hyphen (e.g., 'C-F').",
123
+ "professional_basketball|players|firstseason": "The 'firstseason' column in the 'players' table of the 'professional_basketball' database stores integers representing the first season a player participated in professional basketball.",
124
+ "professional_basketball|players|lastseason": "The 'lastseason' column in the 'players' table of the 'professional_basketball' database stores integers representing the last season a player participated in, with no special value encoding.",
125
+ "professional_basketball|players|height": "In the 'players' table of the 'professional_basketball' database, the 'height' column, of type real, represents the player's height in inches.",
126
+ "professional_basketball|players|weight": "In the 'professional_basketball' database, the 'players' table contains a 'weight' column of integer type, representing a player's weight in pounds (lb). A null or empty value indicates missing information.",
127
+ "professional_basketball|players|college": "The 'college' column in the 'players' table of the 'professional_basketball' database records the name of the college a player graduated from, if applicable. If null or empty, the player does not have this information. Example values include 'Illinois State', 'Northwestern', 'Hampton Institute'.",
128
+ "professional_basketball|players|collegeOther": "The 'collegeOther' column in the 'players' table of the 'professional_basketball' database records the names of previous colleges from which players have transferred, indicating any prior college affiliations before their final college. This includes both junior colleges and other four-year institutions.",
129
+ "professional_basketball|players|birthDate": "The 'birthDate' column in the 'players' table of the 'professional_basketball' database stores the date of birth of professional basketball players, formatted as YYYY-MM-DD.",
130
+ "professional_basketball|players|birthCity": "The 'birthCity' column in the 'players' table of the 'professional_basketball' database stores text information indicating the city where each player was born. If this column is null or empty, it means the player's birth city is not recorded. Example values include 'Claremont', 'Cacak', and 'San Gabriel'.",
131
+ "professional_basketball|players|birthState": "The 'birthState' column in the 'players' table of the 'professional_basketball' database stores the abbreviation of the state in the USA where the player was born, as a text string. Example values include 'AK' for Alaska, 'CO' for Colorado, and 'NY' for New York.",
132
+ "professional_basketball|players|birthCountry": "The 'birthCountry' column in the 'players' table of the 'professional_basketball' database stores the player's country of birth as text abbreviations, e.g., 'TRI' for Trinidad, 'GEO' for Georgia, 'ISL' for Iceland.",
133
+ "professional_basketball|players|highSchool": "In the 'professional_basketball' database, within the 'players' table, the 'highSchool' column (type: text) records the names of the high schools attended by the players. If this column is null or empty, it indicates that the high school information was not recorded. Example values include 'Almonta', 'Wheat Ridge', and 'J.O. Johnson'.",
134
+ "professional_basketball|players|hsCity": "The 'high school city' column in the 'players' table of the 'professional_basketball' database stores the city or cities where the player attended high school, as text. If null or empty, the information was not recorded. Examples include 'Princeton' and 'Clemmons / Winston-Salem / Winston-Salem'.",
135
+ "professional_basketball|players|hsState": "The 'high school state' column in the 'players' table of the 'professional_basketball' database stores text indicating the state(s) where the player attended high school. Null or empty values indicate unrecorded data. Examples include 'RI', 'KY / VA', 'MD/DC'.",
136
+ "professional_basketball|players|hsCountry": "The 'high school country' column in the 'players' table of the 'professional_basketball' database stores text indicating the countries where players attended high school. Null or empty values signify unrecorded data. Examples include 'JPN' for Japan, 'DOM/USA' for dual attendance in the Dominican Republic and the USA, and 'LAT' for Latvia.",
137
+ "professional_basketball|players|deathDate": "In the 'players' table of the 'professional_basketball' database, the 'deathDate' column records the date a player died. A value of '0000-00-00' indicates the player is alive, while specific dates (e.g., '1995-03-18', '2007-11-30', '1997-12-14') represent the player's death date.",
138
+ "professional_basketball|players|race": "The 'race' column in the 'players' table of the 'professional_basketball' database stores the race of players as text. Values include 'B' for black, 'W' for white, with other values possibly representing errors or undocumented categories.",
139
+ "professional_basketball|teams|year": "Year the team was established or relevant to, in the professional_basketball database's teams table.",
140
+ "professional_basketball|teams|lgID": "The 'league ID' column in the 'teams' table of the 'professional_basketball' database stores the league name as text, indicating the basketball league to which a team belongs. Main categories include NBA and ABA, with all possible values being 'NBA', 'NBL', 'ABL1', 'PBLA', 'NPBL', 'ABA'.",
141
+ "professional_basketball|teams|tmID": "In the 'teams' table of the 'professional_basketball' database, the 'team ID' column, of type text, stores the team's abbreviated name. Example values include 'TCH', 'SAA', 'WAS'.",
142
+ "professional_basketball|teams|franchID": "Identifier codes for basketball teams.",
143
+ "professional_basketball|teams|confID": "The 'confID' column in the 'teams' table of the 'professional_basketball' database represents the conference identifier for basketball teams, indicating whether a team belongs to the Western Conference ('WC') or the Eastern Conference ('EC').",
144
+ "professional_basketball|teams|divID": "Identifier for the division a team belongs to within the professional basketball league.",
145
+ "professional_basketball|teams|rank": "In the 'teams' table of the 'professional_basketball' database, the 'rank' column, an integer, indicates the team's standing where a lower value signifies a better position.",
146
+ "professional_basketball|teams|playoff": "In the 'teams' table of the 'professional_basketball' database, the 'playoff' column (text type) indicates if a team attends the playoffs (non-null/empty values) or not (null/empty). Example values: ['DS', 'SF', 'CS'].",
147
+ "professional_basketball|teams|name": "The 'name' column in the 'teams' table of the 'professional_basketball' database stores the full name of each basketball team as text, with examples including 'Youngstown Bears', 'Phoenix Suns', and 'Hammond Ciesar All-Americans'.",
148
+ "professional_basketball|teams|o_fgm": "Number of offensive field goals made by the team in a season.",
149
+ "professional_basketball|teams|o_ftm": "Seasonal offensive free throws made by a team.",
150
+ "professional_basketball|teams|o_pts": "The \"offense points\" column, an integer, records the points scored by a team in the professional_basketball database's teams table.",
151
+ "professional_basketball|teams|d_pts": "The 'defense points' column, an integer, records the defensive scores of teams in the 'teams' table of the 'professional_basketball' database.",
152
+ "professional_basketball|teams|homeWon": "Number of games a team has won at their home venue.",
153
+ "professional_basketball|teams|homeLost": "Number of games lost at home by professional basketball teams.",
154
+ "professional_basketball|teams|awayWon": "Number of games a team has won when playing in an opponent's venue.",
155
+ "professional_basketball|teams|awayLost": "Number of away games lost by a team.",
156
+ "professional_basketball|teams|won": "The 'won' column, an integer, records the total yearly wins for each team in the 'teams' table of the 'professional_basketball' database.",
157
+ "professional_basketball|teams|lost": "The 'lost' column in the 'teams' table of the 'professional_basketball' database stores the total number of games lost by the team in the current year, as an integer.",
158
+ "professional_basketball|teams|games": "In the 'teams' table of the 'professional_basketball' database, the 'games' column, an integer, represents the total games played by the team in the current season.",
159
+ "professional_basketball|teams|arena": "In the 'teams' table of the 'professional_basketball' database, the 'arena' column (text type) indicates the team's individual arena name(s), if any; null or empty values signify no individual arena.",
160
+ "professional_basketball|awards_coaches|id": "Unique identifier for each row in the awards_coaches table.",
161
+ "professional_basketball|awards_coaches|year": "Year the coach was honored.",
162
+ "professional_basketball|awards_coaches|coachID": "The 'coachID' column in the 'awards_coaches' table of the 'professional_basketball' database stores the unique text identifier for each coach, exemplified by values like 'dantomi01', 'mullajo01', and 'johnsph01'.",
163
+ "professional_basketball|awards_coaches|award": "The 'award' column in the 'awards_coaches' table of the 'professional_basketball' database stores text values representing the names of coaching awards in professional basketball, specifically within the NBA and ABA categories, including 'ABA Coach of the Year' and 'NBA Coach of the Year'.",
164
+ "professional_basketball|awards_coaches|lgID": "The 'league ID' column in the 'awards_coaches' table of the 'professional_basketball' database stores the league's name, with 'NBA' and 'ABA' as its primary categories.",
165
+ "professional_basketball|awards_coaches|note": "The 'note' column in the 'awards_coaches' table of the 'professional_basketball' database is of type text and serves to provide special notifications. A value of \"null\" indicates there are no special notes, while \"tie\" denotes a tie between coaches for awards.",
166
+ "professional_basketball|players_teams|id": "Unique identifier for each record in the players_teams table.",
167
+ "professional_basketball|players_teams|playerID": "The 'playerID' column in the 'players_teams' table of the 'professional_basketball' database stores unique text identifiers for each player, such as 'lowesi01', 'norenir01', and 'phelaja02'.",
168
+ "professional_basketball|players_teams|year": "Year the player was associated with a team in the 'players_teams' table of the 'professional_basketball' database.",
169
+ "professional_basketball|players_teams|stint": "The 'stint' column, an integer, indicates the duration a player was part of a specific team.",
170
+ "professional_basketball|players_teams|tmID": "The \"team ID\" column in the \"players_teams\" table of the \"professional_basketball\" database stores the abbreviated names of teams as text, representing the team name. Example values include 'POR', 'INJ', 'MNL'.",
171
+ "professional_basketball|players_teams|GP": "In the 'players_teams' table of the 'professional_basketball' database, the 'game presentatons' integer column tracks the number of games attended by a player, ranging from 0 to 82, where 82 signifies full attendance.",
172
+ "professional_basketball|players_teams|minutes": "The 'minutes' column, an integer, records the total minutes a player has played for a team in the 'players_teams' table of the 'professional_basketball' database.",
173
+ "professional_basketball|players_teams|points": "The 'points' column, an integer, records the number of points scored by players in the 'players_teams' table of the 'professional_basketball' database.",
174
+ "professional_basketball|players_teams|oRebounds": "In the 'players_teams' table of the 'professional_basketball' database, the 'offense rebounds' column, an integer type, records the number of offensive rebounds by a player, where 'empty' or 'null' signifies no offensive rebounds.",
175
+ "professional_basketball|players_teams|dRebounds": "In the 'players_teams' table of the 'professional_basketball' database, the 'defense rebounds' column, an integer type, records the number of defensive rebounds by a player, where 'null' or an empty value indicates no defensive rebounds.",
176
+ "professional_basketball|players_teams|rebounds": "The 'rebounds' column in the 'players_teams' table of the 'professional_basketball' database, of integer type, records the sum of offensive and defensive rebounds a player has secured. A value of null or empty indicates no rebounds, while a numerical value represents the total rebounds achieved.",
177
+ "professional_basketball|players_teams|assists": "In the 'players_teams' table of the 'professional_basketball' database, the 'assistants' column, an integer type, records the number of assistants a player has, where null or empty values indicate none.",
178
+ "professional_basketball|players_teams|steals": "In the 'players_teams' table of the 'professional_basketball' database, the 'steals' column, an integer type, records the number of steals by a player. A null or empty value indicates no steals.",
179
+ "professional_basketball|players_teams|blocks": "In the 'players_teams' table of the 'professional_basketball' database, the 'blocks' column, an integer type, records the number of blocks by a player, where null or empty signifies none.",
180
+ "professional_basketball|players_teams|turnovers": "In the 'players_teams' table of the 'professional_basketball' database, the 'turnovers' column, an integer type, records the number of times a player loses possession of the ball to the opposing team, with null or empty values indicating no turnovers occurred.",
181
+ "professional_basketball|players_teams|PF": "In the 'players_teams' table of the 'professional_basketball' database, the 'personal fouls' column, an integer type, records the number of personal fouls committed by a player. A null or empty value indicates no fouls.",
182
+ "professional_basketball|players_teams|fgAttempted": "In the 'players_teams' table of the 'professional_basketball' database, the 'field goal attempted' integer column records the number of field goal attempts by a player, where 'null' or empty signifies no attempts.",
183
+ "professional_basketball|players_teams|fgMade": "In the 'players_teams' table of the 'professional_basketball' database, the 'field goal made' column, an integer type, records the number of successful field goals by a player. 'Null' or empty values indicate no field goals made.",
184
+ "professional_basketball|players_teams|ftAttempted": "In the 'players_teams' table of the 'professional_basketball' database, the 'free throw attempted' integer column records the number of free throws a player attempts during a game, where 'null' or an empty value indicates no attempts were made.",
185
+ "professional_basketball|players_teams|ftMade": "In the 'players_teams' table of the 'professional_basketball' database, the 'free throw made' integer column records the number of successful free throws by a player, with null or empty values indicating none were made.",
186
+ "professional_basketball|players_teams|threeAttempted": "In the 'players_teams' table of the 'professional_basketball' database, the 'three point attempted' integer column records the number of three-point shots a player attempts, where 'null' or an empty value indicates no attempts, and '2' signifies two attempts.",
187
+ "professional_basketball|players_teams|threeMade": "In the 'players_teams' table of the 'professional_basketball' database, the 'three point made' integer column records the number of three-point shots successfully made by a player, where 'null' or an empty value indicates no three-point shots were made.",
188
+ "professional_basketball|players_teams|PostGP": "Number of post-season (playoffs) game presentations by a player; 0 indicates no participation.",
189
+ "professional_basketball|players_teams|PostGS": "Number of post-season games a player started.",
190
+ "professional_basketball|players_teams|PostMinutes": "Minutes played by a player during the post-season in the professional_basketball database's players_teams table.",
191
+ "professional_basketball|players_teams|PostPoints": "The total points scored by a player during the post-season, stored as an integer in the 'players_teams' table of the 'professional_basketball' database.",
192
+ "professional_basketball|players_teams|PostoRebounds": "In the 'players_teams' table of the 'professional_basketball' database, the 'post season offense rebounds' column, an integer type, records the number of offensive rebounds a player has during the post-season. A null or empty value indicates no rebounds.",
193
+ "professional_basketball|players_teams|PostdRebounds": "In the 'players_teams' table of the 'professional_basketball' database, the 'post season defense rebounds' column, an integer, records the number of defensive rebounds a player secures during the post season. A null or empty value indicates none were recorded.",
194
+ "professional_basketball|players_teams|PostRebounds": "In the 'players_teams' table of the 'professional_basketball' database, the 'post season defense rebounds' integer column records the total number of defensive rebounds a player has made during the post-season. A null or empty value indicates no rebounds.",
195
+ "professional_basketball|players_teams|PostAssists": "In the 'players_teams' table of the 'professional_basketball' database, the 'post season assistants' integer column records the number of assists a player made during the post season, with null or empty values indicating no assists.",
196
+ "professional_basketball|players_teams|PostSteals": "The \"post season steals\" column, an integer in the \"players_teams\" table of the \"professional_basketball\" database, records the number of offensive steals a player achieves during the post season. A null or empty value indicates no steals.",
197
+ "professional_basketball|players_teams|PostBlocks": "In the 'players_teams' table of the 'professional_basketball' database, the 'post season blocks' column, an integer type, records the number of blocks a player has made during the post season. A null or empty value indicates no blocks.",
198
+ "professional_basketball|players_teams|PostTurnovers": "In the 'players_teams' table of the 'professional_basketball' database, the 'post season turnovers' column, an integer, records the number of turnovers a player has in the post season, with null or empty indicating no turnovers.",
199
+ "professional_basketball|players_teams|PostPF": "In the 'players_teams' table of the 'professional_basketball' database, the 'post season personal fouls' integer column records the number of personal fouls a player has committed during the post season, with null or empty values indicating no fouls.",
200
+ "professional_basketball|players_teams|PostfgAttempted": "In the 'players_teams' table of the 'professional_basketball' database, the 'post season field goal attempted' integer column records the number of field goal attempts a player made during the post-season, with null or empty values indicating no attempts.",
201
+ "professional_basketball|players_teams|PostfgMade": "In the 'players_teams' table of the 'professional_basketball' database, the 'post season field goal made' column, an integer type, records the number of field goals a player made during the post season. A null or empty value indicates none were made.",
202
+ "professional_basketball|players_teams|PostftAttempted": "In the 'players_teams' table of the 'professional_basketball' database, the 'post season field free throw attempted' integer column records the number of free throw attempts a player made during the post-season. A null or empty value indicates no attempts were made.",
203
+ "professional_basketball|players_teams|PostftMade": "In the 'players_teams' table of the 'professional_basketball' database, the 'post season free throw made' integer column records the number of free throws a player made during the post-season, where null or empty values indicate none were made.",
204
+ "professional_basketball|players_teams|PostthreeAttempted": "Integer count of three-point attempts by a player in the post-season; null/empty signifies no attempts.",
205
+ "professional_basketball|players_teams|PostthreeMade": "In the 'players_teams' table of the 'professional_basketball' database, the 'post season three point made' column, an integer type, records the number of three-point shots a player made during the post season. A null or empty value indicates no three-point shots were made.",
206
+ "professional_basketball|series_post|id": "Unique identifier for each record in the series_post table of the professional_basketball database.",
207
+ "professional_basketball|series_post|year": "The 'year' column in the 'series_post' table of the 'professional_basketball' database stores the integer value representing the year when the series was posted.",
208
+ "professional_basketball|series_post|round": "In the 'series_post' table of the 'professional_basketball' database, the 'round' column, of type text, indicates the stage of the competition. It uses abbreviations to represent different rounds: 'F' for final, 'SF' for semi-final, 'QF' for quarter-final, 'DF' for division-final, and 'DSF' for division semi-final. Example values include 'SF', 'DT', and 'CFR'.",
209
+ "professional_basketball|series_post|series": "In the 'professional_basketball' database, within the 'series_post' table, the 'series' column of type 'text' likely represents codes or abbreviations for different series or categories in professional basketball, with example values like 'I', 'C', 'L'. The specific meaning of these codes is not provided.",
210
+ "professional_basketball|series_post|tmIDWinner": "Identifier for the winning team in a basketball series.",
211
+ "professional_basketball|series_post|lgIDWinner": "Identifies the league (NBA or ABA) of the series post winner.",
212
+ "professional_basketball|series_post|tmIDLoser": "Identifier for the team that lost in a professional basketball series.",
213
+ "professional_basketball|series_post|lgIDLoser": "Identifier of the league to which the losing team belongs in a professional basketball series post, with possible values 'ABA' or 'NBA'.",
214
+ "professional_basketball|series_post|W": "The 'wins' column, an integer, records the number of victories in a professional basketball series.",
215
+ "professional_basketball|series_post|L": "The 'loses' column, an integer, records the number of losses in a professional basketball series.",
216
+ "financial|account|account_id": "#The account id is an integer that represents the id of the account.",
217
+ "financial|account|district_id": "#The location of branch column in the account table of the financial database is an integer type column that represents the location of the branch. ",
218
+ "financial|account|frequency": "#The frequency column in the account table indicates the frequency of the account. The possible values for this column are POPLATEK MESICNE, POPLATEK TYDNE, and POPLATEK PO OBRATU.",
219
+ "financial|account|date": "#The date column in the account table represents the creation date of the account. The date is in the form YYMMDD. For example, the date could be 1996-03-20, 1996-05-01, or 1996-08-20.",
220
+ "financial|card|card_id": "# 'credit card id is an integer column in the card table. It represents the id number of credit card.'",
221
+ "financial|card|disp_id": "#The disposition id column in the card table of the financial database represents the unique identifier of the disposition of the card. ",
222
+ "financial|card|type": "#This column represents the type of credit card within the context of the table 'card'. The possible values for this column are 'junior', 'classic', and 'gold'. The value 'junior' represents the junior class of credit card, 'classic' represents the standard class of credit card, and 'gold' represents the high-level credit card.",
223
+ "financial|card|issued": "#The issued column in the card table represents the date when the credit card was issued. The values in this column are in the date format YYMMDD. For example, the issued column in the card table has values such as 1998-11-02, 1997-01-14, and 1997-11-08.",
224
+ "financial|client|client_id": "# 'client_id is a unique number that identifies a client in the financial table.'",
225
+ "financial|client|gender": "#This column represents the gender of the client. The gender can be either F or M.",
226
+ "financial|client|birth_date": "#The birth date of the client. The birth date is stored in the format of date. For example, the birth date of the first client is 1955-08-15, the birth date of the second client is 1942-07-16, and the birth date of the third client is 1980-08-04.",
227
+ "financial|client|district_id": "#The location of branch column in the client table is an integer that represents the location of the branch. ",
228
+ "financial|disp|disp_id": "# 'The disposition id is a unique number that identifies this row of record in the disposition table.'",
229
+ "financial|disp|client_id": "# 'client_id is an integer column in the disposition table. It represents the id number of client.'",
230
+ "financial|disp|account_id": "#This column is an integer type column named account_id in the disposition table of the financial database. It represents the id number of account.",
231
+ "financial|disp|type": "#This column represents the type of disposition within the context of the 'financial' database table 'disposition'. The possible values for this column are 'OWNER', 'USER', and 'DISPONENT'. The commonsense evidence suggests that the account can only have the right to issue permanent orders or apply for loans.",
232
+ "financial|district|district_id": "#The location of branch column in the district table of the financial database is an integer that represents the location of the branch. ",
233
+ "financial|district|A2": "#The district_name column in the district table refers to the name of the district where the bank branch is located. The possible values for this column include Ceska Lipa, Louny, and Znojmo.",
234
+ "financial|district|A3": "#The region column in the district table refers to the region where the district is located. The possible values for this column are: west Bohemia, east Bohemia, south Bohemia, Prague, south Moravia, north Moravia, central Bohemia, north Bohemia.",
235
+ "financial|district|A4": "#The number of inhabitants column in the district table represents the number of inhabitants in the district. The column is of type text. Example values include 170449, 53921, and 109164.",
236
+ "financial|district|A5": "#The number of municipalities with inhabitants less than 499 in the district table. The municipalities are a subset of the district, which is a subset of the region. Example values include 31, 24, and 60.",
237
+ "financial|district|A6": "#The column 'no. of municipalities with inhabitants 500-1999' in the table 'district' refers to the number of municipalities with inhabitants between 500 and 1999 in a district. The values in this column are text. For example, some of the values in this column are '30', '29', and '18'.",
238
+ "financial|district|A7": "#The number of municipalities with inhabitants between 2000 and 9999 in the district table. The column is a text type. Example values include 6, 3, and 7.",
239
+ "financial|district|A8": "#The number of municipalities with inhabitants greater than 10000 in the district table of the financial database. The data type of this column is integer. The column is related to the municipality, district, and region tables in the financial database.",
240
+ "financial|district|A9": "#A9 is an integer column in the district table. It is not useful.",
241
+ "financial|district|A10": "#The ratio of urban inhabitants is a real number that represents the percentage of urban inhabitants in the district. ",
242
+ "financial|district|A11": "#The average salary column in the district table represents the average salary of employees in the district. ",
243
+ "financial|district|A12": "#The unemployment rate 1995 column in the district table of the financial database represents the percentage of unemployed people in the district in 1995.",
244
+ "financial|district|A13": "#The unemployment rate 1996 column in the district table of the financial database represents the percentage of unemployed people in the district in 1996.",
245
+ "financial|district|A14": "#The number of entrepreneurs per 1000 inhabitants in the district table of the financial database.",
246
+ "financial|district|A15": "#The number of committed crimes in 1995 in the district table of the financial database.",
247
+ "financial|district|A16": "#The number of committed crimes in 1996 in the district table of the financial database.",
248
+ "financial|loan|loan_id": "# 'loan_id is an integer column in the loan table. It is the id number identifying the loan data.'",
249
+ "financial|loan|account_id": "#The account_id column in the loan table is an integer type column. It represents the id number identifying the account.",
250
+ "financial|loan|date": "#The date column in the loan table represents the date when the loan is approved. Example values include 1996-02-12, 1997-12-08, and 1998-07-11.",
251
+ "financial|loan|amount": "#The approved amount of the loan in US dollars.",
252
+ "financial|loan|duration": "#The duration column in the loan table represents the duration of the loan in months.",
253
+ "financial|loan|payments": "#The monthly payments column in the loan table represents the amount of money that the borrower is required to pay back to the lender every month. The unit of the monthly payments is month.",
254
+ "financial|loan|status": "#The 'status' column in the 'loan' table refers to the repayment status of the loan. The possible values for this column are 'D', 'B', 'C', 'A'. 'A' stands for contract finished, no problems; 'B' stands for contract finished, loan not paid; 'C' stands for running contract, OK so far; 'D' stands for running contract, client in debt'.",
255
+ "financial|order|order_id": "# 'order_id is an integer column in the financial.order table, identifying the unique order.'",
256
+ "financial|order|account_id": "# 'account_id is an integer column in the order table. It represents the id number of account.'",
257
+ "financial|order|bank_to": "#The bank of the recipient column in the order table is a text column that stores the bank name of the recipient. The possible values for this column are: OP, UV, KL.",
258
+ "financial|order|account_to": "#The account of the recipient is an integer that represents the account number of the recipient. Each bank has a unique two-letter code.",
259
+ "financial|order|amount": "#The debited amount column in the order table of the financial database represents the amount of money that has been withdrawn from the account of the customer who placed the order.",
260
+ "financial|order|k_symbol": "#This column represents the characterization of the payment within the context of the order table. The purpose of the payment is described in this column. The possible values for this column are: 'POJISTNE' stands for insurance payment, 'SIPO' stands for household payment, 'LEASING' stands for leasing, 'UVER' stands for loan payment. ",
261
+ "financial|trans|trans_id": "#The transaction id is a unique identifier for each transaction in the financial transaction table.",
262
+ "financial|trans|account_id": "#The account_id column in the transaction table refers to the unique identifier of the account that the transaction is associated with.",
263
+ "financial|trans|date": "#The date of transaction column in the transaction table represents the date when a transaction was made. The column is of date type and some example values are 1995-08-02, 1994-04-06, and 1996-01-11.",
264
+ "financial|trans|type": "#This column is a text column named '+/- transaction' in the 'transaction' table of the 'financial' database. The values in this column are either 'PRIJEM' or 'VYDAJ'. 'PRIJEM' stands for credit and 'VYDAJ' stands for withdrawal.",
265
+ "financial|trans|operation": "#This column represents the mode of transaction for each transaction in the financial transaction table. The mode of transaction can be one of the following: 'VYBER KARTOU': credit card withdrawal, 'VKLAD': credit in cash, 'PREVOD Z UCTU' :collection from another bank, 'VYBER': withdrawal in cash, 'PREVOD NA UCET': remittance to another bank. ",
266
+ "financial|trans|amount": "#The amount of money column in the transaction table represents the amount of money in USD.",
267
+ "financial|trans|balance": "#The balance after transaction column in the transaction table of the financial database represents the balance of the account after the transaction is completed. The balance is represented in integer format and the unit is USD.",
268
+ "financial|trans|k_symbol": "#This column is called 'characterization of the transaction' and is of type 'text'. It is a description of the transaction. The possible values are: 'POJISTNE': stands for insurrance payment, 'SLUZBY': stands for payment for statement, 'UROK': stands for interest credited, 'SANKC. UROK': sanction interest if negative balance, 'SIPO': stands for household, 'DUCHOD': stands for old-age pension, 'UVER': stands for loan payment. ",
269
+ "financial|trans|bank": "#The bank of the partner column in the transaction table refers to the bank code of the partner. Each bank has a unique two-letter code. For example, the bank of the partner can be 'OP', 'MN', or 'QR'.",
270
+ "financial|trans|account": "#This column represents the account of the partner within the transaction table of the financial database.",
271
+ "codebase_community|badges|Id": "#The Id column in the badges table represents the badge id.",
272
+ "codebase_community|badges|UserId": "# 'User Id is the unique id of the user in the badges table.'",
273
+ "codebase_community|badges|Name": "#This column represents the badge name the user obtained within the table badges in the database codebase_community.",
274
+ "codebase_community|badges|Date": "#The Date column in the badges table represents the date that the user obtained the badge. The values in this column are of datetime type. For example, the values in this column can be '2014-04-20 03:23:00.0', '2010-07-27 13:48:44.0', '2014-04-29 07:42:18.0'. ",
275
+ "codebase_community|comments|Id": "#The Id column in the comments table represents the comment Id.",
276
+ "codebase_community|comments|PostId": "#The Post Id column in the comments table is an integer type column that represents the unique id of the post.",
277
+ "codebase_community|comments|Score": "#The Score column in the comments table is a rating score. The score is from 0 to 100. The score more than 60 refers that the comment is a positive comment. The score less than 60 refers that the comment is a negative comment.",
278
+ "codebase_community|comments|Text": "#This column is the detailed content of the comment within the comments table. Example values include 2014-04-20 03:23:00.0, 2010-07-27 13:48:44.0, and 2014-04-29 07:42:18.0.",
279
+ "codebase_community|comments|CreationDate": "#The Creation Date column in the comments table represents the date and time when a comment was created. The values in this column are of datetime type. Example values in this column include 2014-06-19 14:19:46.0, 2011-04-18 22:16:06.0, and 2014-06-28 16:15:58.0.",
280
+ "codebase_community|comments|UserId": "#The User Id column in the comments table is an integer type column that represents the id of the user who post the comment.",
281
+ "codebase_community|comments|UserDisplayName": "#This column represents the display name of the user who posted the comment in the comments table of the codebase_community database. The column is of text type.",
282
+ "codebase_community|postHistory|Id": "#The Id column in the post History table is an integer type, representing the post history id.",
283
+ "codebase_community|postHistory|PostHistoryTypeId": "#The Post History Type Id column in the post History table is an integer type column that represents the id of the post history type.",
284
+ "codebase_community|postHistory|PostId": "#The Post Id column in the post History table is an integer type column that represents the unique id of the post.",
285
+ "codebase_community|postHistory|RevisionGUID": "#The revision globally unique id of the post in the post History table.",
286
+ "codebase_community|postHistory|CreationDate": "#The Creation Date column in the Post History table represents the date and time when a post was created. The values in this column are of the datetime data type. Example values in this column include 2012-05-05 20:22:10.0, 2011-11-14 18:55:25.0, and 2012-06-17 22:12:42.0.",
287
+ "codebase_community|postHistory|UserId": "#The User Id column in the post History table represents the user who posted the post.",
288
+ "codebase_community|postHistory|Text": "#The Text column in the post History table contains the detailed content of the post. Example values include chi-square analysis, Is it possible to identify a UMP test for one-sided hypotheses on $ \\\\\\\\theta $ for\\\\\\\\nthe case of an i.i.d. sample $ (X_1, ..., X_n) $ of random variables $ X_i \\\\\\\\sim f_\\\\\\\\theta (.) $ such that the parameter $ \\\\\\\\theta $ appears in the support of $ f_\\\\\\\\theta (.) $ ?\\\\\\\\n\\\\\\\\nIs this referring to Karlin-Rubin Theorem?\\\\\\\\n\\\\\\\\nI am a bit confused because of the parameter appearing in the support.\\\\\\\\n\\\\\\\\nThanks. and <books><neural-networks><pattern-recognition><image-processing>.",
289
+ "codebase_community|postHistory|Comment": "#This column is called Comment and is of type text. It is a column in the post History table of the codebase_community database. Comment is used to store comments of the post. Some example values of this column include deleted 26 characters in body, additional information about time series, from http://machinelearning.stackexchange.com/questions/164/at-what-n-do-n-grams-become-counterproductive/165#165. ",
290
+ "codebase_community|postHistory|UserDisplayName": "#This column represents the display name of the user who made the post. The column is of text type.",
291
+ "codebase_community|postLinks|Id": "#The Id column in the post Links table represents the post link id.",
292
+ "codebase_community|postLinks|CreationDate": "#The Creation Date column in the post Links table represents the date and time when the post link was created. The values in this column are of datetime type. Example values in this column include 2011-06-26 06:44:56.0, 2014-08-25 19:11:49.0, and 2014-06-20 10:29:51.0.",
293
+ "codebase_community|postLinks|PostId": "#The Post Id column in the post Links table refers to the post id. ",
294
+ "codebase_community|postLinks|RelatedPostId": "#This column is named 'Related Post Id' and is of type 'integer'. It represents the id of the related post within the 'post Links' table.",
295
+ "codebase_community|postLinks|LinkTypeId": "#This column represents the id of the link type within the context of the post Links table in the codebase_community database.",
296
+ "codebase_community|posts|Id": "#The Id column in the posts table represents the post id.",
297
+ "codebase_community|posts|PostTypeId": "#The Post Type Id column in the posts table is an integer type column that represents the id of the post type.",
298
+ "codebase_community|posts|AcceptedAnswerId": "#The Accepted Answer Id column in the Posts table refers to the accepted answer id of the post.",
299
+ "codebase_community|posts|CreaionDate": "#The Creation Date column in the posts table represents the date and time when a post was created. Example values include 2014-04-24 20:39:50.0, 2013-05-03 21:34:06.0, and 2012-08-31 19:01:21.0.",
300
+ "codebase_community|posts|Score": "#The Score column in the posts table represents the score of the post.",
301
+ "codebase_community|posts|ViewCount": "#The View Count column in the posts table represents the view count of the post. Commonsense evidence: Higher view count means the post has higher popularity.",
302
+ "codebase_community|posts|Body": "#The body of the post in the posts table. The body of the post is a text field. Example values include 2014-04-24 20:39:50.0, 2013-05-03 21:34:06.0, and 2012-08-31 19:01:21.0.",
303
+ "codebase_community|posts|OwnerUserId": "#The Owner User Id column in the posts table represents the id of the owner user.",
304
+ "codebase_community|posts|LasActivityDate": "#The Last Activity Date column in the posts table represents the last activity date of a post. The column is of datetime type. Example values include 2013-10-30 08:13:16.0, 2013-10-26 14:04:44.0, and 2013-09-05 05:22:59.0.",
305
+ "codebase_community|posts|Title": "#The Title column in the posts table is the title of the post. Example values include 2013-10-30 08:13:16.0, 2013-10-26 14:04:44.0, and 2013-09-05 05:22:59.0.",
306
+ "codebase_community|posts|Tags": "#This column is called Tags and it is of type text. It represents the tag of the post in the posts table. The following are some example values of this column: <pca><ica>, <self-study><classification><predictive-models>, <anova><spss><effect-size>. ",
307
+ "codebase_community|posts|AnswerCount": "#The Answer Count column in the posts table represents the total number of answers of the post.",
308
+ "codebase_community|posts|CommentCount": "#The Comment Count column in the posts table represents the total number of comments of the post.",
309
+ "codebase_community|posts|FavoriteCount": "# Favorite Count is an integer column in the posts table. It represents the total number of favorites of the post. Commonsense evidence: more favorite count refers to more valuable posts.",
310
+ "codebase_community|posts|LastEditorUserId": "#The Last Editor User Id column in the posts table is an integer type column that represents the id of the last editor.",
311
+ "codebase_community|posts|LastEditDate": "#This column represents the last edit date of a post in the posts table. The data type of this column is datetime. Example values of this column include '2012-04-16 20:33:31.0', '2014-08-28 08:04:07.0', '2014-05-02 08:05:59.0'.",
312
+ "codebase_community|posts|CommunityOwnedDate": "#The Community Owned Date column in the posts table represents the date when the post was owned by the community. The data type of this column is datetime. Example values of this column include 2010-07-26 15:37:25.0, 2012-07-01 18:46:18.0, and 2011-03-07 20:52:49.0.",
313
+ "codebase_community|posts|ParentId": "#The ParentId column in the posts table is an integer type column that represents the id of the parent post. If the parent id is null, the post is the root post. Otherwise, the post is the child post of other post.",
314
+ "codebase_community|posts|ClosedDate": "#The Closed Date column in the posts table represents the closed date of the post. Commonsense evidence: if ClosedDate is null or empty, it means this post is not well-finished; if CloseDate is not null or empty, it means this post has well-finished.",
315
+ "codebase_community|posts|OwnerDisplayName": "#The Owner Display Name column in the posts table refers to the display name of the post owner. Example values include rapi, Kim M\u00fcller, and Ben.",
316
+ "codebase_community|posts|LastEditorDisplayName": "#The Last Editor Display Name column in the posts table is the display name of the last editor. Example values include user12555, user3666, and asd123.",
317
+ "codebase_community|tags|Id": "#The Id column in the tags table represents the tag id.",
318
+ "codebase_community|tags|TagName": "#This column represents the name of the tag within the context of the tags table. The column is of type text and the example values include anosim, wishart, and data-generating-process.",
319
+ "codebase_community|tags|Count": "# 'Count is an integer column in the tags table. It represents the count of posts that contain this tag. More counts --> this tag is more popular.'",
320
+ "codebase_community|tags|ExcerptPostId": "#This column represents the excerpt post id of the tag within the tags table of the codebase_community database.",
321
+ "codebase_community|tags|WikiPostId": "#This column represents the wiki post id of the tag within the tags table of the codebase_community database.",
322
+ "codebase_community|users|Id": "# 'The Id column in the users table represents the user id.'",
323
+ "codebase_community|users|Reputation": "#The column Reputation in the table users represents the user's reputation. Commonsense evidence: The user with higher reputation has more influence.",
324
+ "codebase_community|users|CreationDate": "#The Creation Date column in the users table represents the date and time when the user account was created. The values in this column are of datetime type. Example values in this column include 2012-05-15 20:50:06.0, 2014-07-16 16:58:37.0, and 2011-09-29 06:34:53.0.",
325
+ "codebase_community|users|DisplayName": "# 'Display Name is a text column in the users table. It represents the user's display name. Example values include chromodynamic, Chris Hagan, and nosebrain.'",
326
+ "codebase_community|users|LastAccessDate": "#The Last Access Date column in the users table represents the last access date of the user account. Example values include 2014-06-20 20:52:42.0, 2014-04-25 14:21:58.0, and 2014-05-20 05:32:09.0.",
327
+ "codebase_community|users|WebsiteUrl": "#The Website Url column in the Users table represents the website url of the user account. Example values include http://edurbpov.blogspot.com, http://www.yossale.com, and http://www.igourmet.com.",
328
+ "codebase_community|users|Location": "# 'Location is a text column in the users table. It stores the location of the user. Example values include Europe, Degerfors, Sweden, and East Greenwich, RI.'",
329
+ "codebase_community|users|AboutMe": "#The About Me column in the users table is the self introduction of the user.",
330
+ "codebase_community|users|Views": "#Users table contains information about the users of the website. Views column is an integer column that represents the number of views.",
331
+ "codebase_community|users|UpVotes": "# 'UpVotes is an integer column in the users table, which represents the number of upvotes.'",
332
+ "codebase_community|users|DownVotes": "#Users table contains information about users in the community. DownVotes column is an integer column that represents the number of downvotes a user has received.",
333
+ "codebase_community|users|AccountId": "#The Account Id column in the users table is an integer type column that represents the unique id of the account.",
334
+ "codebase_community|users|Age": "# 'Age is a column in the users table that represents the age of the user. The age of the user can be classified into three categories: teenager (13-18), adult (19-65), and elder (>65).'",
335
+ "codebase_community|users|ProfileImageUrl": "#The Profile Image Url column in the users table is the profile image url. Example values include Europe, Degerfors, Sweden, and East Greenwich, RI.",
336
+ "codebase_community|votes|Id": "#The Id column in the votes table represents the vote id.",
337
+ "codebase_community|votes|PostId": "#This column represents the id of the post that is voted in the votes table of the codebase_community database.",
338
+ "codebase_community|votes|VoteTypeId": "#The column 'Vote Type Id' in the table 'votes' represents the id of the vote type.",
339
+ "codebase_community|votes|CreationDate": "#The Creation Date column in the votes table represents the date when the vote was created. The data type of this column is datetime. For example, the Creation Date of the first vote is 2011-02-16, the Creation Date of the second vote is 2011-03-14, and the Creation Date of the third vote is 2011-04-09.",
340
+ "codebase_community|votes|UserId": "# 'User Id is an integer column in the votes table. It represents the id of the voter.'",
341
+ "codebase_community|votes|BountyAmount": "#The Bounty Amount column in the votes table represents the amount of bounty.",
342
+ "student_club|event|event_id": "#The event id is a text column that serves as a unique identifier for the event. Example values include recqh5zxHuDpKUu0i, recI43CzsZ0Q625ma, and recMKjJbWRgSQqf4Y.",
343
+ "student_club|event|event_name": "#The event name column in the Event table of the student_club database contains the name of the event. The values in this column are of text type. Example values include April Meeting, November Speaker, and February Speaker.",
344
+ "student_club|event|event_date": "#The date the event took place or is scheduled to take place. For example, 2020-03-10T12:00:00. Some example values include 2020-04-23T13:00:00, 2019-11-19T12:00:00, and 2020-04-21T12:00:00.",
345
+ "student_club|event|type": "#The kind of event, such as game, social, election. The type column in the Event table of the student_club database is a text column. The possible values for this column are Meeting, Election, Budget, Registration, Social, Guest Speaker, Game, and Community Service.",
346
+ "student_club|event|notes": "#This column is a text field named notes in the table Event. It is a free text field for any notes about the event. Example values include Attend school teams Lacrosse game as a group., Attend school Woman's Lacrosse game as a group., Students can stop by the table to get information on the club and register.",
347
+ "student_club|event|location": "#The location column in the Event table refers to the address where the event was held or is to be held or the name of such a location. Example values include 1308 106th Ave., Campus Football stadium, Conference Room BA 452.",
348
+ "student_club|event|status": "#This column indicates the status of the event within the context of the Event table. The status can be one of three values: Closed, Planning, or Open. ",
349
+ "student_club|major|major_id": "# Major id is a text column that serves as a unique identifier for each major in the Major table. Example values include recHeH8VnZFNzXJtX, recVYIFAwjT91pnv7, and recXLfKqMqRArcKNg.",
350
+ "student_club|major|major_name": "#Major name is a text column in the Major table. It stores the name of the major. Example values include Agribusiness, Computer Engineering, and Environmental and Natural Resource Economics.",
351
+ "student_club|major|department": "#The department column in the Major table refers to the name of the department that offers the major. Example values include Music Department, Military Science Program, and Asian Studies Program.",
352
+ "student_club|major|college": "#The name college that houses the department that offers the major. The possible values for this column are: College of Engineering, School of Business, College of Natural Resources, College of Education & Human Services, College of Science, College of the Arts, College of Humanities and Social Sciences, College of Agriculture and Applied Sciences.",
353
+ "student_club|zip_code|zip_code": "#The ZIP code itself. A five-digit number identifying a US post office.",
354
+ "student_club|zip_code|type": "#The kind of ZIP code. The type of ZIP code can be one of the following: Unique, Standard, PO Box. Unique refers to zip codes that are assigned to individual organizations. Standard refers to the normal codes with which most people are familiar. PO Box refers to zip codes that have post office boxes.",
355
+ "student_club|zip_code|city": "#The city to which the ZIP pertains. This column is part of the Zip Code table in the student_club database. Example values include Blountville, Hughesville, and Medway.",
356
+ "student_club|zip_code|county": "#The county to which the ZIP pertains. This column is part of the Zip Code table in the student_club database. Example values include Huron County, Osage County, and Hooker County.",
357
+ "student_club|zip_code|state": "#The name of the state to which the ZIP pertains. This column is in the Zip Code table of the student_club database. Example values include Oregon, Wyoming, and Indiana.",
358
+ "student_club|zip_code|short_state": "#The abbreviation of the state to which the ZIP pertains. This column is in the Zip Code table. The column type is text. Example values include MS, MI, and MT.",
359
+ "student_club|attendance|link_to_event": "#The unique identifier of the event which was attended. References the Event table. Example values include recmbOVHSyzXQZpQr, recI43CzsZ0Q625ma, and recLKj8BbTNqxFbTb.",
360
+ "student_club|attendance|link_to_member": "#The unique identifier of the member who attended the event. References the Member table. Example values include reccW7q1KkhSKZsea, recEFd8s6pkrTt4Pz, and recuSfhAZIlKba4s2.",
361
+ "student_club|budget|budget_id": "#Budget id is a unique identifier for the budget entry in Budget table. Example values include rectLnkwVg4AIgY0R, recN9yY7okNrFps0Y, recziC0Fccvve12RF.",
362
+ "student_club|budget|category": "#The category column in the Budget table refers to the area for which the amount is budgeted, such as, advertisement, food, parking. The possible values for this column are Parking, Club T-Shirts, Advertisement, Food, Speaker Gifts.",
363
+ "student_club|budget|spent": "#The total amount spent in the budgeted category for an event. The unit is dollar. This is summarized from the Expense table.",
364
+ "student_club|budget|remaining": "#The remaining column in the Budget table is a real number that represents the amount of money left in the budget. A value calculated as the amount budgeted minus the amount spent. The unit is dollar. If the remaining < 0, it means that the cost has exceeded the budget.",
365
+ "student_club|budget|amount": "#The amount budgeted for the specified category and event. The unit is dollar. Some computation like: amount = spent + remaining.",
366
+ "student_club|budget|event_status": "#The event status column in the Budget table indicates the status of the event. The event status can be one of the following: Closed, Open, or Planning. Closed means that the event is closed. The spent and the remaining won't change anymore. Open means that the event is already opened. The spent and the remaining will change with new expenses. Planning means that the event is not started yet but is planning. The spent and the remaining won't change at this stage.",
367
+ "student_club|budget|link_to_event": "#The unique identifier of the event to which the budget line applies. References the Event table. Example values include rec2mJrCofveboaz6, recmbOVHSyzXQZpQr, and recLrY8kyOR1PcZeF.",
368
+ "student_club|expense|expense_id": "# Expense table contains the information of all expenses made by the student club. expense id is a unique identifier of each expense. It is of text type. Example values of expense id are recelGWS0AxwSMQwl, recoMvesC2XeccvpV, rec1oMgNFt7Y0G40x.",
369
+ "student_club|expense|expense_description": "#The expense description column in the Expense table of the student_club database is a text column that contains a textual description of what the money was spend for. Example values include Alumni Glass, Parking, and Posters.",
370
+ "student_club|expense|expense_date": "#The expense date column in the Expense table represents the date the expense was incurred. The value of this column should be in the format of YYYY-MM-DD. For example, the expense date could be 2019-09-01, 2019-09-18, or 2019-10-22.",
371
+ "student_club|expense|cost": "#The cost column in the Expense table represents the dollar amount of the expense. The unit is dollar.",
372
+ "student_club|expense|approved": "#This column is called 'approved' and is of type 'text'. It is a true or false value indicating if the expense was approved. The value of this column can be either 'true' or 'false'. The possible values for this column are: ['true'].",
373
+ "student_club|expense|link_to_member": "#The link to member column in the Expense table refers to the member who incurred the expense. The possible values for this column are rec4BLdZHS2Blfp4v, recD078PnS3x2doBe, and recro8T1MPMwRadVH.",
374
+ "student_club|expense|link_to_budget": "#This column is a text column named 'link to budget' in the 'Expense' table. It references the Budget table. The unique identifier of the record in the Budget table that indicates the expected total expenditure for a given category and event. Example values include 'recZAjcliIUo4BCKW', 'recMc8TbR76rmUSHG', 'rec0QmEc3cSQFQ6V2'.",
375
+ "student_club|income|income_id": "# Income id is a unique identifier for each record of income. Example values include recOo362sJrXFv2az, recuH1QWNo5JMi2uc, and recudPRjARER5Nt9B.",
376
+ "student_club|income|date_received": "#This column represents the date that the fund received within the Income table. The values in this column are text type, and some example values are '2019-10-04', '2019-09-12', '2019-10-13'.",
377
+ "student_club|income|amount": "#The amount column in the Income table represents the amount of funds, and the unit is dollar.",
378
+ "student_club|income|source": "#This column is called source and is of type text. It is a value indicating where the funds come from such as dues, or the annual university allocation. The possible values for this column are Dues, Fundraising, School Appropration, Sponsorship.",
379
+ "student_club|income|notes": "#This column is a text column in the Income table of the student_club database. It contains a free-text value giving any needed details about the receipt of funds. The possible values for this column include: Annual funding from Student Government., Ad revenue for use on flyers used to advertise upcoming events., Secured donations to help pay for speaker gifts.",
380
+ "student_club|income|link_to_member": "#This column is a text column in the table Income of the student_club database. It contains the link to the member. Example values of this column include recVsoJJHFI8bgtfw, rec4BLdZHS2Blfp4v, and recT92PyyZCGq1R68.",
381
+ "student_club|member|member_id": "# 'The member id is a text column in the Member table. It is a unique id of member. Example values include rec1x5zBFIqoOuPW8, recttfySfQnYb68u3, and recVsoJJHFI8bgtfw.'",
382
+ "student_club|member|first_name": "# 'The first name of a member in the Member table of the student_club database. For example, some first names in this column are Katy, Kevin, and Christof.'",
383
+ "student_club|member|last_name": "#The last name of a member in the Member table. Commonsense evidence: full name is first_name + last_name. e.g. A member's first name is Angela and last name is Sanders. Thus, his/her full name is Angela Sanders. Example values include Hilton, Mason, and Mccray.",
384
+ "student_club|member|email": "# 'The email column in the Member table is used to store the email address of each member. The email column is of type text. Example values include adele.deleon@lpu.edu, kevin.pierce@lpu.edu, and elijah.allen@lpu.edu.'",
385
+ "student_club|member|position": "#The position the member holds in the club. This column is of type text. The possible values for this column are: Member, President, Vice President, Secretary, Inactive, Treasurer.",
386
+ "student_club|member|t_shirt_size": "#The size of tee shirt that member wants when shirts are ordered. Commonsense evidence: usually the student ordered t-shirt with lager size has bigger body shape. Possible values: Medium, X-Large, Large, Small.",
387
+ "student_club|member|phone": "#The best telephone at which to contact the member. This column is of type text. Example values include 475-555-3802, 490-555-8460, and 951-555-6777.",
388
+ "student_club|member|zip": "#The zip column in the Member table represents the zip code of the member's hometown.",
389
+ "student_club|member|link_to_major": "#The unique identifier of the major of the member. References the Major table. The column is of type text. Example values include recCk8lCDOTRp6rKN, recxK3MHQFbR9J5uO, and recXLfKqMqRArcKNg."
390
+ }
databases/sqlite/codebase_community.sqlite ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92101be6d2a9f6adceea59d38f6d1c556087f9eea1432432a21268cb1348036d
3
+ size 481419264
databases/sqlite/financial.sqlite ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d15d89cdb068a202b6f2b99342af44dffc1d52545b39ceaf62efdc0ba570101e
3
+ size 71294976
databases/sqlite/github_repos.sqlite ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08081d0b4a529571ec6d01dc398ca475081bb193f819b99706e1800305decc09
3
+ size 7239413760
databases/sqlite/professional_basketball.sqlite ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11bc18807f9209e4fae852695907c77961a208639e25b59def05802c9f0b8839
3
+ size 6668288
databases/sqlite/retails.sqlite ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2021fa97598a34216fbdbe604817c7d5bfdb15819da55aabdbd68ab04e4e3d78
3
+ size 1027735552
databases/sqlite/student_club.sqlite ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb89bcfe97eefa386a27904ec5aa15159811a7eac894ec659a36e48fa9f76b77
3
+ size 2641920
tasks.jsonl ADDED
The diff for this file is too large to render. See raw diff