|
If you do not need the service, then there is no need to pay for it in terms of lower performance.Quadrant 1: Simple Data without Queries
Quadrant 2: Simple Data with Queries |
|
|
SELECT name FROM emp WHERE startdate > '1980-12-31' AND salary > 40000; |
SELECT name FROM emp WHERE dept IN ( SELECT dname FROM dept WHERE floor = 1 ); |
SELECT avg( salary ) FROM emp WHERE dept = 'marketing'; |