databases.txt 919 B

1234567891011121314
  1. Databases:
  2. Databases are where serious applications and servers hold all their data. A program that allows databases to be created and modified is called a Database Management System (DBMS).
  3. The language to communicate with a DBMS is SQL: Structured Query Language. Most DBMses accept all SQL commands. Some have quirks for SQL commands. Some have non standard SQL commands. But for basic stuff, any DBMS will do.
  4. There are a number of floss DBMSes:
  5. PostgreSQL
  6. MariaDB
  7. You may have also heard of some proprietary ones:
  8. Oracle
  9. Microsoft SQL "sequel" Server
  10. Inside a database you will find a number of tables (think spreadsheets, not furniture). Each table has some fields/columns that store different types of data, and a number of entries/rows which hold that data. Tables will also have one or more Primary Keys, which are used to find a unique row. Often the primary key will just be a number, like a customer ID.