MySQL setup
MySQL setup is about talking to a database from Python. Pattern is always: connect → cursor → execute → fetch or commit → close.
For MySQL setup: use ? placeholders (or the driver’s params). Never build SQL with + user text — that is injection. sqlite3 is in the stdlib for practice; MySQL/Mongo need a driver.
MySQL setup on the board — insert Asha, select her back, print the name. Same idea on MySQL. Close the connection.
MySQL setup — output — three setup steps. Then cursor.execute like sqlite.
Steps in order: connect → execute → fetch/commit → close. Mention placeholders.