2022-02-14 02:22:51 +00:00
|
|
|
---
|
|
|
|
title: select
|
|
|
|
layout: command
|
|
|
|
version: 0.59.0
|
|
|
|
---
|
2019-11-10 07:07:27 +00:00
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
Down-select table to only these columns.
|
2019-11-10 07:07:27 +00:00
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
## Signature
|
2019-11-10 07:07:27 +00:00
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
```> select ...rest```
|
2020-06-23 18:21:47 +00:00
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
## Parameters
|
|
|
|
|
|
|
|
- `...rest`: the columns to select from the table
|
2019-11-10 07:07:27 +00:00
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
## Examples
|
2019-11-10 07:07:27 +00:00
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
Select just the name column
|
2019-11-10 07:07:27 +00:00
|
|
|
```shell
|
2022-02-14 02:22:51 +00:00
|
|
|
> ls | select name
|
2020-06-23 18:21:47 +00:00
|
|
|
```
|
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
Select the name and size columns
|
2020-06-23 18:21:47 +00:00
|
|
|
```shell
|
2022-02-14 02:22:51 +00:00
|
|
|
> ls | select name size
|
2019-11-10 07:07:27 +00:00
|
|
|
```
|