• 0

more SQL practice?


Question

10 answers to this question

Recommended Posts

  • 0

What it has usually helped me are the following:

 

a) Start a personal project... Something interesting to build (You will learn a lot!). 

b) Go to StackOverflow or the StackExchange Network and try answering/reading questions/answers about SQL. 

 

If you want to expand your knowledge, I don't know if the courses cover it, but you can look over Table Partitioning (a.k.a Sharding) and how to do replications (This will only happen when you're targeting hundred of thousands of users, at least)

  • 0
  On 30/08/2016 at 11:16, Jose_49 said:

a) Start a personal project... Something interesting to build (You will learn a lot!). 

Expand  

I echo this, I started working on my own replacement for WordPress (as I had enough of it) and I learnt a lot - Not in just writing MySql statements but general logic like working out what I need and what I don't need. It also help me in deciding what could be split off to other tables because the same information can be used in different ways.

  • 0

I find one of the big 'gothchas' is performance. Most SQL is almost trivial to construct and will run pretty well in a lab setting. Performance  (or lack of it) really starts to show once you run things on tables with hundreds of millions of rows. I'm not sure in your  course if you have access to data that extensive. If not, that may be something to explore. 

  • 0
  On 30/08/2016 at 11:34, Zag L. said:

I find one of the big 'gothchas' is performance. Most SQL is almost trivial to construct and will run pretty well in a lab setting. Performance  (or lack of it) really starts to show once you run things on tables with hundreds of millions of rows. I'm not sure in your  course if you have access to data that extensive. If not, that may be something to explore. 

Expand  

It not just about how that SQL statement is written, it also about how it's stored in the database. Are you storing that data as text when it better to us BLOB instead?

  • 0
  On 03/09/2016 at 20:54, ultimate99 said:

Thanks for the suggestions. 

I'm actually looking for something more health care related, any thoughts?

Expand  

https://github.com/search?utf8=✓&q=medical+sql&type=Repositories&ref=searchresults

 

https://github.com/search?utf8=✓&q=hospital+sql&type=Repositories&ref=searchresults

 

https://github.com/search?utf8=✓&q=doctor+sql&type=Repositories&ref=searchresults

 

https://github.com/search?utf8=✓&q=emergency+sql&type=Repositories&ref=searchresults

 

GitHub has a really bad search engine so something like SQL which would be used inside an application won't show up in search results unless the project actually used the word "SQL" in the high level summary or as part of the project name.

 

So repeating the above searches without the SQL will yeild far more ideas for medical based SQL examples.

 

BTW, "health" is a useless search term since in programming terms it is a common phrase for monitoring and logging of running applications.

 

So, from GitHub, we can construct some real world SQL challenges:

 

Exercise 1.

 

Take this project

 

https://github.com/CESoftWorks/sldb  "Patient Management Suite for Polysomnography Labs, developed for the Paphos General Hospital"

 

and convert the Access database it uses to SQL Server or Oracle

 

Exercise 2.

 

Take this Hospital Management System and add a real-time incoming ambulance display board with patient status and triage info

 

https://github.com/emrulkayes2103/Hospital-Management-System

 

Exercise 3.

 

Convert the Web API of this project to use MS SQL Server instead of MySQL

 

https://github.com/jlruatpuia/SRHF DBMS for State Referral Hospital, Falkawn

 

and so on...

 

 

 

  • 0
  On 03/09/2016 at 23:51, DevTech said:

https://github.com/search?utf8=✓&q=medical+sql&type=Repositories&ref=searchresults

 

https://github.com/search?utf8=✓&q=hospital+sql&type=Repositories&ref=searchresults

 

https://github.com/search?utf8=✓&q=doctor+sql&type=Repositories&ref=searchresults

 

https://github.com/search?utf8=✓&q=emergency+sql&type=Repositories&ref=searchresults

 

GitHub has a really bad search engine so something like SQL which would be used inside an application won't show up in search results unless the project actually used the word "SQL" in the high level summary or as part of the project name.

 

So repeating the above searches without the SQL will yeild far more ideas for medical based SQL examples.

 

BTW, "health" is a useless search term since in programming terms it is a common phrase for monitoring and logging of running applications.

 

So, from GitHub, we can construct some real world SQL challenges:

 

Exercise 1.

 

Take this project

 

https://github.com/CESoftWorks/sldb  "Patient Management Suite for Polysomnography Labs, developed for the Paphos General Hospital"

 

and convert the Access database it uses to SQL Server or Oracle

 

Exercise 2.

 

Take this Hospital Management System and add a real-time incoming ambulance display board with patient status and triage info

 

https://github.com/emrulkayes2103/Hospital-Management-System

 

Exercise 3.

 

Convert the Web API of this project to use MS SQL Server instead of MySQL

 

https://github.com/jlruatpuia/SRHF DBMS for State Referral Hospital, Falkawn

 

and so on...

 

 

 

Expand  

woah! dude, thank you!

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.