Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/rubydevi/new_clinic

Interpret the database diagram, and implement the SQL needed to build that database.
https://github.com/rubydevi/new_clinic

Last synced: about 5 hours ago
JSON representation

Interpret the database diagram, and implement the SQL needed to build that database.

Awesome Lists containing this project

README

        

# 📗 Table of Contents

- [📖 About the Project](#about-project)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)

# 📖 Clinic

In this project, we have used a database diagram and we'll be writing schema based on the provided diagram to create the data structure for the clinic.

### Tech Stack

Database


  • PostgreSQL

### Key Features

- **Create Database**
- **Create Table**
- **Insert Data**

(back to top)

## 💻 Getting Started

### Prerequisites

This repository includes files with plain SQL that can be used to recreate a database:

- 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.

You will need `PostgreSQL` already installed.

Run this code on your terminaml to create database:
```sh
createdb clinic;
```

### Setup

Clone this repository to your desired folder:
```sh
cd my-folder
git clone [email protected]:rubydevi/new_clinic.git
cd new_clinic
```

### Install

Install this project with:

```sh
gem install
```

### Usage
Run the queries on your local database to use this project.

**Important note: this file might include queries that make changes in the database (e.g., remove records). Use them responsibly!**

(back to top)

## 👥 Authors

👤 **Chongtham Ruby Devi**

- GitHub: [@rubydevi](https://github.com/rubydevi)
- Twitter: [@arieabyss](https://twitter.com/ariesabyss)
- LinkedIn: [Chongtham Ruby Devi](https://www.linkedin.com/in/chongtham-bhoomika/)

👤 **Luzinda Douglas**
- GitHub: [@LdouglasOT](https://github.com/LdouglasOT)
- Twitter: [@LdouglasOT](https://twitter.com/LdouglasOT)
- LinkedIn: [LdouglasOT](https://www.linkedin.com/in/LdouglasOT/)

(back to top)

## 🔭 Future Features

- CRUD operations.
- Front End.
- User Management.

(back to top)

## 🤝 Contributing

Contributions, issues, and feature requests are welcome!

Feel free to check the [issues page](https://github.com/rubydevi/new_clinic/issues).

## ⭐️ Show your support

If you like this project please leave a star, I'd really appreciate it.

(back to top)

## Acknowledgments

- I'd like to thank Microverse for this wonderful README template.

## 📝 License

This project is [MIT](https://github.com/rubydevi/new_clinic/blob/main/LICENSE) licensed.

(back to top)