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