I'm creating the table below, but how do I include "James" as an entry to be automatically added when the table is created? I hope my question is clear.
CREATE TABLE IF NOT EXISTS list (
id INT NOT NULL AUTO_INCREMENT,
names VARCHAR(50), PRIMARY KEY (id)
)