An open API service indexing awesome lists of open source software.

https://github.com/normainobary2021/vet-clinic


https://github.com/normainobary2021/vet-clinic

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# 📗 Table of Contents

- [📗 Table of Contents](#-table-of-contents)
- [📖 Vet Clinic Database ](#-vet-clinic-database-)
- [🛠 Built With ](#-built-with-)
- [Tech Stack ](#tech-stack-)
- [Key Features ](#key-features-)
- [💻 Getting Started ](#-getting-started-)
- [Prerequisites](#prerequisites)
- [Setup](#setup)
- [Connect to your PostgreSQL server with psql](#connect-to-your-postgresql-server-with-psql)
- [Create the database](#create-the-database)
- [Connect to the database](#connect-to-the-database)
- [📄 Schema ](#-schema-)
- [👥 Authors ](#-authors-)
- [🤝 Contributing ](#-contributing-)
- [⭐️ Show your support ](#️-show-your-support-)
- [🙏 Acknowledgments ](#-acknowledgments-)
- [📝 License ](#-license-)

# 📖 Vet Clinic Database

**Vet Clinic Database** is a Relational database to create the data structure for a vet clinic

## 🛠 Built With

### Tech Stack

Database

### Key Features

- **CREATE DATABASE**
- **INSERT ANIMALS**
- **QUERY ANIMALS**
- **ALTER TABLES**
- **TRANSACTIONS**

(back to top)

## 💻 Getting Started

To get a local copy up and running, follow these steps.

### Prerequisites

In order to run this project you need:

- PostgreSQL server installed and running
- psql installed

### Setup

Clone this repository to your desired folder:

Example commands:

```
git clone https://github.com/normainobary2021/vet-clinic.git
cd vet-clinic
```

### Connect to your PostgreSQL server with psql

```
psql
```

### Create the database

```
CREATE DATABASE vet_clinic;
```

### Connect to the database

```
\c vet_clinic
```

- 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. **Important note: this file might include queries that make changes in the database (e.g., remove records). Use them responsibly!**

(back to top)

### Schema
N/A

## 👥 Authors

👤 **Norman Ainobushoborozi**

- GitHub: [@normainobary2021](https://github.com/normainobary2021)
- Twitter: [@NormanAinobush2](https://twitter.com/NormanAinobush2)
- LinkedIn: [@norman-ainobushoborozi](https://www.linkedin.com/in/norman-ainobushoborozi/)

(back to top)

## 🤝 Contributing

Contributions, issues, and feature requests are welcome!

Feel free to check the [issues page](../../issues/).

(back to top)

## ⭐️ Show your support

If you like this project, please give it a ⭐️!

(back to top)

## 🙏 Acknowledgments

- N/A

(back to top)

## 📝 License

This project is [MIT](./LICENSE.md) licensed.

_NOTE: we recommend using the [MIT license](https://choosealicense.com/licenses/mit/) - you can set it up quickly by [using templates available on GitHub](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). You can also use [any other license](https://choosealicense.com/licenses/) if you wish._

(back to top)