---
title: Select a single column and output raw
description: ```
glaze json misc/test-data/[123].json --select-template '{{.a}}-{{.b}}'
```

doc_version: 1
last_updated: 2026-07-02
---

In order to output more complex values, you can specific a single `select` template.

This is really just a shortcut for `--output tsv --with-headers=false --template=`.

```
❯ glaze json misc/test-data/[123].json --select-template '{{.a}}-{{.b}}'
1-2
10-20
100-200
```
