MySQL Database with Python Tutorial Part 2 - creating tables and inserting data

Python MySQL in playlist: This is an tutorial for using MySQL with the Python programming language and the MySQLdb import. This video covers how to create a table and how to insert data. Say you are creating a forum, for example. Each post a user makes will need to be stored somewhere. In this case, we could assume it is a MySQL database. Later, we will cover how to retrieve and read the data from the database to show it on the page. A MySQL database covers everything within it. Within a database, you have an assortment of tables. Within tables, you have rows and columns that make up something very similar to what a spreadsheet is.
Back to Top