next
Database and Talk Introduction
What is a database?
an optimized black-box for storing and accessing structured data
Talk coverage
- database tables and column types
- when and why to use a database instead of a file
- relational databases
- database normal forms
- an exercise in table organization and optimization
- SQL language syntax
- how you can access your database
- different database vendors and table types
Talk limitations
- will only cover databases which speak SQL (Structured Query Language)
- will only cover standard structured databases which are table oriented
- will not describe the "magic" within the black-box
- will not cover databases and database vendors other than MySQL
- will not cover the explicit "join"ing of tables - inner products, cross products
- will not cover the variety of table types and storage engines