Query a Row Using Native Object Store | NOS | Teradata Vantage - Querying for a Specific Set of Rows - Advanced SQL Engine - Teradata Database

Teradata Vantage™ - Native Object Store Getting Started Guide

Product
Advanced SQL Engine
Teradata Database
Release Number
17.10
Published
July 2021
Language
English (United States)
Last Update
2022-06-22
dita:mapPath
gmv1596851589343.ditamap
dita:ditavalPath
wrg1590696035526.ditaval
dita:id
B035-1214
lifecycle
previous
Product Category
Software
Teradata Vantage

The examples use a sample river flow data set. To use your own data, replace the table and column names, and authorization object. See Variable Substitutions for Examples for the credentials and location values for the sample data set.

  1. To run NOS-related commands, log on to the database as a user with the required privileges.
  2. If it does not exist, create the foreign table or ask your database administrator to create the foreign table. See Setting Up to Run Examples.
  3. Query for a set of rows by specifying a specific value in the WHERE clause. This requests that only records with that value be returned for viewing.
    SELECT MAX(columnX)
    FROM table_name
    WHERE columnN = 'value';

Example: Querying for a Specific Set of Rows

Specify a specific value for the site_no attribute in the WHERE clause. In this example, the max value for the Flow attribute for a single site_no is returned.

If not already done, create the foreign table. See Setting Up to Run Examples.

SELECT MAX(Flow)
FROM riverflow
WHERE site_no = '09394500';

Your result will be similar to the following:

Maximum(Flow)
----------------------
               9.91