ChatGPT and mySQL Database Schemas

from blog Robb Knight • Posts • RSS Feed, | ↗ original
ChatGPT is wild. I entered "Describe a mysql database schema for tracking the owned books of multiple people" and it came back with the queries to write the tables including foreign keys: CREATE TABLE people ( id INTEGER PRIMARY KEY, name VARCHAR(255) NOT NULL);CREATE TABLE books ( id INTEGER PRIMARY KEY, title VARCHAR(255) NOT NULL, author...