├── 01-connect_to_db.py ├── 02-create_db.py ├── 03-show_db.py ├── 04-create_table.py ├── 05-insert_data.py ├── 06-insert_many.py ├── 07-selcet_data.py ├── 08-select_fetchone.py ├── 09-select_with_filter.py ├── 10-select_with_wildcard.py ├── 11_select_with_user_input.py ├── 12_select_with_order.py ├── 13_SELECT_WITH_LIMIT.PY ├── 14_ulter)table.py ├── 15_update_table.py ├── 16_update_with_user_inputs.py ├── 17_delete_data.py ├── 18_drop_table.py └── README.md /01-connect_to_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/01-connect_to_db.py -------------------------------------------------------------------------------- /02-create_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/02-create_db.py -------------------------------------------------------------------------------- /03-show_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/03-show_db.py -------------------------------------------------------------------------------- /04-create_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/04-create_table.py -------------------------------------------------------------------------------- /05-insert_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/05-insert_data.py -------------------------------------------------------------------------------- /06-insert_many.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/06-insert_many.py -------------------------------------------------------------------------------- /07-selcet_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/07-selcet_data.py -------------------------------------------------------------------------------- /08-select_fetchone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/08-select_fetchone.py -------------------------------------------------------------------------------- /09-select_with_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/09-select_with_filter.py -------------------------------------------------------------------------------- /10-select_with_wildcard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/10-select_with_wildcard.py -------------------------------------------------------------------------------- /11_select_with_user_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/11_select_with_user_input.py -------------------------------------------------------------------------------- /12_select_with_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/12_select_with_order.py -------------------------------------------------------------------------------- /13_SELECT_WITH_LIMIT.PY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/13_SELECT_WITH_LIMIT.PY -------------------------------------------------------------------------------- /14_ulter)table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/14_ulter)table.py -------------------------------------------------------------------------------- /15_update_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/15_update_table.py -------------------------------------------------------------------------------- /16_update_with_user_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/16_update_with_user_inputs.py -------------------------------------------------------------------------------- /17_delete_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/17_delete_data.py -------------------------------------------------------------------------------- /18_drop_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/18_drop_table.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Python-MySQL-Guide/HEAD/README.md --------------------------------------------------------------------------------