| Article: |
SQL Subqueries | |
| Subject: | help | |
| Date: | 2005-12-22 13:12:18 | |
| From: | dazednconfused | |
|
Response to: help
|
||
| Try looking up Having clause. It should work then. | ||
Showing messages 1 through 1 of 1.
| Article: |
SQL Subqueries | |
| Subject: | help | |
| Date: | 2005-12-22 13:12:18 | |
| From: | dazednconfused | |
|
Response to: help
|
||
| Try looking up Having clause. It should work then. | ||
Showing messages 1 through 1 of 1.
select * from employee where salary=(select min(salary) from employee) and
department_id=(select min(department_id) from Department);