03 Dec PMCA Saturday 18:30 Python Homework 21.11.27.
Using the example that we did in the last class, create the below table with the name called questions. The questions table should have the below columns:
| Table Columns | Column Type |
| id | id |
| question | String (varchar(3000)) |
| option1 | String (varchar(255)) |
| option2 | String (varchar(255)) |
| option3 | String (varchar(255)) |
| option4 | String (varchar(255)) |
| answer | String (varchar(255)) |
Also add, at least 5 rows of information into the table by using the code that we wrote in the last class.
Sorry, the comment form is closed at this time.