https://github.com/andercm/vet-clinic
https://github.com/andercm/vet-clinic
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/andercm/vet-clinic
- Owner: anderCM
- License: mit
- Created: 2023-04-04T19:28:45.000Z (about 3 years ago)
- Default Branch: development
- Last Pushed: 2023-04-12T16:35:16.000Z (about 3 years ago)
- Last Synced: 2025-02-05T14:28:40.263Z (over 1 year ago)
- Language: PLpgSQL
- Size: 114 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
VET CLINIC
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ](#faq)
- [📝 License](#license)
**[VET CLINIC]** is a project to create a databse using SQL for postgreSQL
Database
- **[SQL]**
- **[Database]**
- **[Data infrastructure]**
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need:
- Install PostgreSQL
- Instal PGadmin (optional)
### Setup
Clone this repository to your desired folder:
```sh
git clone https://github.com/anderCM/Vet-clinic.git
cd Vet-clinic
```
### Create database
To run the project, execute the following command:
1. Connect to your PostgreSQL server with `psql`
```
> psql
postgres=#
```
2. Create the database `vet_clinic`
```
postgres=# CREATE DATABASE vet_clinic;
CREATE DATABASE
```
3. Connect to your database vet_clinic. Inside your current session do:
```
postgres=# \c vet_clinic
You are now connected to database "vet_clinic" as user "postgres".
vet_clinic=#
```
That's it! Congratulations, you have created your database and connected to it. Next, we will add a table.
- Use [schema.sql](./schema.sql) to create all tables.
- Use [data.sql](./data.sql) to populate tables with sample data.
- Check [queries.sql](./queries.sql) for examples of queries that can be run on a newly created database.
👤 **Anderson Canales Medina**
- GitHub: [@githubhandle](https://github.com/anderCM)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/andersoncanales/)
👤 **Jakaria**
- GitHub: [@githubhandle](https://github.com/JakariaJishan)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/jakariajishan/)
👤 **TUMBU BARTHOLOMEW ELAD**
GitHub: [@githubhandle](https://github.com/elad237)
- Twitter: [@twitterhandle](https://twitter.com/Elad59380989)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/tumbu-elad-896ab2183/)
- [ ] **[Create table]**
- [ ] **[Insert data to table]**
- [ ] **[Select data from table]**
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](../../issues/).
I would like to thank to my team
This project is [MIT](./LICENSE) licensed.