Number of Values
|
Edit
|
Example
|
---|---|---|
A single character value
|
Add an equal sign between
the column name and the unique value.
|
CARS.Make = 'Acura' |
More than one character value
|
Specify an IN operator and enclose the unique values in parentheses.
|
CARS.Make IN ( 'Acura', 'Audi') |
Numeric comparison
|
Specify a numeric operator and a constant, or specify a numeric operator and another
column name.
|
CARS.Cylinders >= 6 PRDSALE.Actual > PRDSALE.Estimate |