Ask HN: How to learn relational database
I'm a application developer using django, since most of the stuff learn happens behind Django'ORM.
So i'm looking to learn relational database, so that i can design better database system.
Can anybody guide what approach should be taken ?
3 comments
[ 4.1 ms ] story [ 15.4 ms ] threadIn terms of interacting with relational databases directly, I've found SQLite's command line interface [the command sqlite3] very lightweight. A potential bonus of 'sqlite3' is running it against SQLite databases for applications already on your machine...be careful though.
Good luck.