LogoLogo
About
Tables: v1
  • Home
  • Guides
  • BDK
  • REST API
  • Release Notes
Tables: v1
  • Tables
    • Overview
  • Creating Tables
  • Row Operations
  • Column Operations
  • Turning a Table Into an Excel File
  • Sorting Tables
  • Merging Two Tables Into a New Table
  • Using Values from Tables
Powered by GitBook
On this page

Was this helpful?

Export as PDF

Using Values from Tables

Get the Rows That Contain A Specific Column Value

Let's say you have this table:

Customer ID
Customer Age
Customer Name

00001

24

David Smith

00002

68

Gertrude Williams

00003

24

Christine Urig

And you want to get ONLY the rows that contain a customer that is 24 years old. You would write:

get the rows whose "Customer Age" is "24"

This would return the following:

Customer ID
Customer Age
Customer Name

00001

24

David Smith

00003

24

Christine Urig

Last updated 1 month ago

Was this helpful?