File size: 830 Bytes
bffa994
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Train Data Overview

This folder contains TSV files with subsets of SQL queries, each filtered based on specific criteria.

## Files and Descriptions

### `less_than_90.tsv`

- Contains queries where the total character length is **less than 90**.

### `queries_from_game.tsv`

- Includes queries where the **first table after the `FROM` clause is `game`**.

### `queries_from_other_stats.tsv`

- Contains queries where the **first table after `FROM` is `other_stats`**.

### `queries_from_team.tsv`

- Includes queries that **reference `team` immediately after `FROM`**.

### `queries_with_join.tsv`

- Contains queries that include the keyword **`JOIN`** (case-insensitive).

### `queries_without_join.tsv`

- Contains queries that **do not** include the keyword `JOIN`.
- Often simpler queries accessing a single table.

---