Home > Databases > Quizzes > SQL Basics with SQLite and PostgreSQL (Questions)
SQL Basics with SQLite and PostgreSQL (Questions)
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 0% Most missed: “Name 10 valid operators in SQL.”

SQLite is an Embedded DBMS. This means that it is a Serverless DBMS with the ability to run within your applications.

PostgreSQL DBMS implements a Client-Server Model and requires a Database Server to set up and run over a network.

SQLite vs PostgreSQL: SQLite is very fast, thanks to its minimal design and simple operations. SQLite is for you if all you require is fast read operations. PostgreSQL is more suitable for complex operations.

SQL Basics with SQLite and PostgreSQL (Questions)
Time left 00:00
25 Questions

1. 'What is crow's foot notation?

2. What is the syntax of a window function?

3. Find the number of records in the app table that have a price of 0.

4. 'In Postgres, what happens when you attempt to violate the referential integrity of a table?

5. 'How are words in a column name separated?

6. What is the syntax for a LEFT JOIN?

7. What is the syntax for the ORDER BY clause?

8. What is a transaction?

9. What does the _ character do?

10. What are attributes of conceptual, logical, and physical models?

11. In SQLite, how many actual datatypes are there?

12. What is cardinality?

13. What is inheritance?

14. In the Postgres CLI, what is the command to see information about the current connection?

15. What comes right after the WHERE clause?

16. What is the syntax for the LIMIT clause?

17. In the SQLite CLI, what command will exit out of the CLI?

18. What is an INNER JOIN?

19. What data types does Postgres support?

20. What is a FULL OUTER JOIN?

21. 'What is an ORDBMS?

22. What is an OUTER JOIN?

23. What is the syntax for the BETWEEN clause?

24. What does the LIMIT clause do?

25. In the Postgres CLI, how do you connect to a database?