SQL Basics Primer Part 2
July 31st, 2006 — VyomaThis is the second part of the series of SQL Basics Primer. As mentioned in the earlier post, we would now examine the data retrieval SQL requests from a table.
For sake of illustrations I would be using the following imaginary EMP_DATA table:
| empid | empname | dept |
|---|---|---|
| 3001 | Tom | Management |
| 3002 | Scott | Management |
| 4002 | Daniel | Security |
| 6004 | Laurel | Programming |
| 3003 | Linda | Management |
| 4001 | Jack | Security |
| 6001 | Frank | Programming |
| 6002 | Joe | Programming |
| 5001 | Harrold | Design |
| 6003 | Jim | Programming |