- or download this
/----------------------\
| TYPE | STYPE | OTHER |
\----------------------/
- or download this
/----------------------\
| TYPE | STYPE | OTHER |
|----------------------|
| AAA | BBB | X=CCC |
\----------------------/
- or download this
select * from targettablename where type='AAA' and stype='BBB' and x='
+CCC';
- or download this
/-----------------------------\
| TYPE | STYPE | OTHER |
...
|-----------------------------|
| AA | BB% | X=CC%&Y=DD% |
\-----------------------------/
- or download this
select * from targettablename where type in ('AA','BB') and stype like
+ 'BB%' and X like 'CC%' and y='DDD';
select * from targettablename where type in ('AA','BB') and X like 'CC
+%' and y='DDD';
select * from targettablename where type = 'AA' and stype like 'BB%' a
+nd X like 'CC%' and y like 'DD%';