Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/muthuri-dev/sql-practical-part1
https://github.com/muthuri-dev/sql-practical-part1
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/muthuri-dev/sql-practical-part1
- Owner: muthuri-dev
- License: mit
- Created: 2022-08-25T05:24:10.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-25T06:20:43.000Z (over 2 years ago)
- Last Synced: 2024-04-14T03:13:50.520Z (9 months ago)
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SQL-practical-part1
## Installation
Install sql-server, mysql-workbench and git in your local machine
```bash
git clone
cd
```
## COUNTRY tableQuerying COUNTRY table values
```bash
SELECT * FROM COUNTRY;
```
## Screenshots![sql1](https://user-images.githubusercontent.com/82339780/186585073-5700957e-5c5a-4ca5-b958-d5e8a8075009.png)
## REGION table
Querying REGION table values
```bash
SELECT * FROM REGION;
```
## Screenshots
![sql7](https://user-images.githubusercontent.com/82339780/186585228-9120faed-aac2-47b2-a570-c0f9c0710cbb.png)## EMPLOYEE table
Querying EMPLOYEE table values
```bash
SELECT * FROM EMPLOYEE;
```
## Screenshots
![sql4](https://user-images.githubusercontent.com/82339780/186585119-3df89af6-2e25-4994-892a-ed1c52e54aca.png)## JOB table
Querying JOB table values
```bash
SELECT * FROM JOB;
```
## Screenshots
![sql5](https://user-images.githubusercontent.com/82339780/186585128-d1037eb7-10ef-4dfc-8710-4f3545cb2032.png)## DEPARMENT table
Querying DEPARMENT table values
```bash
SELECT * FROM DEPARMENT;
```
## Screenshots
![sql2](https://user-images.githubusercontent.com/82339780/186585094-66d23935-3529-4d78-a476-5807444877d2.png)## DEPENDENT table
Querying DEPENDENT table values
```bash
SELECT * FROM DEPENDENT;
```
![sql3](https://user-images.githubusercontent.com/82339780/186585104-3d282d24-d30f-423b-adc0-1405e3c8cd08.png)## Screenshots
## LOCATION tableQuerying LOCATION table values
```bash
SELECT * FROM LOCATION;
```## Screenshots
![sql6](https://user-images.githubusercontent.com/82339780/186585134-416e7f99-20a7-40da-aae1-d489f1d5e064.png)
## ContributingContributions are always welcome!
See `contributing.md` for ways to get started.
Please adhere to this project's `code of conduct`.
## License
[MIT](https://choosealicense.com/licenses/mit/)