Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
erikmafo committed Dec 13, 2020
1 parent 4601c1b commit 2209562
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Build Actions Status](https://github.com/erikmafo/BigtableViewer/workflows/Build/badge.svg)](https://github.com/erikmafo/BigtableViewer/actions)
[![CodeQL Analysis Actions Status](https://github.com/erikmafo/BigtableViewer/workflows/CodeQL/badge.svg)](https://github.com/erikmafo/BigtableViewer/actions)

Bigtable viewer is an application that lets you view and query the contents of Google Bigtable tables with SQL.
Bigtable viewer is an application that lets you query the contents of Google Bigtable tables with SQL.

## Installation

Expand Down Expand Up @@ -35,7 +35,7 @@ Use 'KEY' to reference the row key:
```sql
SELECT * FROM 'table-0' WHERE KEY LIKE 'row-.*' LIMIT 1000
```
Use "." to reference a column in a column family:
Use . to reference a column in a column family:
```sql
SELECT * FROM 'table-0' WHERE myFamily.myIntColumn > 0 LIMIT 1000
```
Expand All @@ -51,7 +51,7 @@ Only select data from a specific column family:
```sql
SELECT myFamily FROM 'table-0' LIMIT 1000
```
or list of columns:
or a list of columns:
```sql
SELECT myFamily.column1, myFamily.column2 FROM 'table-0' LIMIT 1000
```
Expand Down

0 comments on commit 2209562

Please sign in to comment.