Data Archive
- Data Archive 6.4.3
- All Products
Predicate
| Interpretation
|
---|---|
=
| equal to
|
<>
| not equal to
|
!=
| not equal to
|
>
| greater than
|
>=
| greater than or equal to
|
<
| less than
|
<=
| less than or equal to
|
SELECT * FROM supplier WHERE status = 20;
sno
| sname
| status
| city
|
---|---|---|---|
S1
| SMITH
| 20
| LONDON
|
S4
| CLARK
| 20
| LONDON
|
SELECT sno, status FROM supplier WHERE city = 'PARIS';
sno
| status
|
---|---|
S2
| 10
|
S3
| 30
|
SELECT pno FROM part WHERE color <> 'RED';