mariadb and postgresql crash course a step by ste
Laurie Franecki
—
BASE mydb TO user1; Inserting Data Insert sample data into a table: First, create a table: CREATE TABLE users ( id SERIAL PRIMARY KEY, name VARCHAR(100), email VARCHAR(100) ); Insert data: INSERT INTO users (name, email) VALUES