## LIST
`LIST` queries output a bullet point list consisting of your file links or the group name, if you decided to [group](https://blacksmithgu.github.io/obsidian-dataview/queries/data-commands/#group-by). You can specify up to **one additional information** to output alongside your file or group information.
## TABLE
The `TABLE` query types outputs page data as a tabular view. You can add zero to multiple meta data fields to your `TABLE` query by adding them as a **comma separated list**.
```dataview
TABLE started, file.folder, file.etags
FROM #games
WHERE rating > 10
```
## Modifiers
### WITHOUT ID
Add `WITHOUT ID` to the table (useful for renaming the first. column)
```dataview
TABLE WITHOUT ID
file.link as "Game"
FROM #bruh
```
### Custom Column Headers
You can specify **custom headings** for your columns by using the `AS` syntax. If you want to use a custom header with spaces, like `File Tags`, you need to wrap it into double quotes: `"File Tags"`.
```dataview
TABLE started, file.folder AS Path, file.etags AS "File Tags" FROM #games
```