Python script to create,read,update,delete (CRUD) a row from a table
Clone the project
git clone https://github.com/PLP-Database-DEPT/lab-3.gitGo to the project directory
cd lab-3Install dependencies
pip install -r requirements.txtCreate Table
python create_table.pyInsert Table
python insert_table.pySelect Rows from a Table
python select.pyUpdate a row from a Table
python update_table.pyDelete a Row from a Table
python delete.py