Locating a Row Using Its Primary Index
Assume the following abstract SQL query.
SELECT column_1, column_2
FROM table_1
WHERE unique_primary_index = column_value;
This query instructs Teradata Database to retrieve the single row having the unique primary index value column_value and then to display the values for column_1 and column_2 of that row.