15. IMODI和PostgreSQL的数据库概念¶
关系型数据库是GIS系统的一个很重要的组成部分。在这个模块,你将学到有关关系型数据管理系统(RDBMS)的概念,同时学会用PostgreSQL来创建一个存放数据的新的数据库,并且还会学到其他典型的关系型数据库的函数。
- 15.1. Lesson: Introduction to Databases
- 15.1.1. What is a Database?
- 15.1.2. Tables
- 15.1.3. Columns / Fields
- 15.1.4. Records
- 15.1.5. Datatypes
- 15.1.6. Modelling an Address Database
- 15.1.7. Database Theory
- 15.1.8. Normalisation
- 15.1.9. Try Yourself
- 15.1.10. Indexes
- 15.1.11. Sequences
- 15.1.12. Entity Relationship Diagramming
- 15.1.13. Constraints, Primary Keys and Foreign Keys
- 15.1.14. Transactions
- 15.1.15. In Conclusion
- 15.1.16. What's Next?
- 15.2. Lesson: Implementing the Data Model
- 15.2.1. Install PostgreSQL
- 15.2.2. Help
- 15.2.3. Create a database user
- 15.2.4. Verify the new account
- 15.2.5. Create a database
- 15.2.6. Starting a database shell session
- 15.2.7. Make Tables in SQL
- 15.2.8. Create Keys in SQL
- 15.2.9. Create Indexes in SQL
- 15.2.10. Dropping Tables in SQL
- 15.2.11. A word on pgAdmin III
- 15.2.12. In Conclusion
- 15.2.13. What's Next?
- 15.3. Lesson: Adding Data to the Model
- 15.4. Lesson: Queries
- 15.5. Lesson: Views
- 15.6. Lesson: Rules