Question 5 of 10Pro Only
What are the differences between SQL and NoSQL databases? When would you choose one over the other?
Sample answer preview
## SQL Databases (Relational) **Examples:** PostgreSQL, MySQL, SQLite, SQL Server ```sql -- Structured data with defined schema CREATE TABLE users ( id SERIAL PRIMARY KEY, name VARCHAR(100) NOT NULL, email VARCHAR(255) UNIQUE ); INSERT INTO users (name, email) VALUES ('Alice',…
SQLNoSQLMongoDBPostgreSQLACIDschema