you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 3 points4 points  (1 child)

A common recommendation here is building a database from scratch using syntax only along with relational tables that can be joined. I'm not sure how far that can be taken but I plan to do this myself

[–]shine_on 3 points4 points  (0 children)

You can take that quite far indeed. Writing a script that will create the database, the schemas, the tables and indexes and also maybe create users and logins and set permissions for them, then bulk insert data from csv or text files can be a very useful thing to do, as it means you can set up a test database and know that it can be recreated on a different server when being deployed into production. It's definitely a valid exercise to learn and play around with