I’m looking for a website where I can practice SQL by doing challenges. Like something where it provides you with some tables and you’re tasked with writing a script to achieve a certain output. I know how to do basic SELECT and UPDATE commands and stuff, but I need a way to practice writing more complex scripts. What do you guys recommend?

    • lemmyvore
      link
      fedilink
      English
      arrow-up
      7
      ·
      7 months ago

      I second this. Learn Postgres as a beginner, it’s SQL standard compliant and it has the amazing EXPLAIN feature (just add EXPLAIN in front of any query). People who start on MySQL or MariaDB have a harder time learning proper SQL concepts later.

    • BurningnnTree@lemmy.oneOP
      link
      fedilink
      English
      arrow-up
      4
      ·
      7 months ago

      This is weirdly morbid and controversial for a programming tutorial. Can’t say I’ve ever practiced SQL queries on execution records before. But I’ll check it out

      • andioop@programming.dev
        link
        fedilink
        English
        arrow-up
        8
        ·
        edit-2
        7 months ago

        Your comment made me curious, so I looked around the website and found this.

        Our dataset documents Texas death row inmates executed from 1976, when the Supreme Court reinstated the death penalty, to the present.

        On one level, the data is simply a part of a mundane programming book. On another, each row represents immense suffering, lives lost, and in some cases amazing redemption and acceptance. In preparing for this dataset, I was deeply moved by a number of the statements and found myself re-evaluting my position on capital punishment. I hope that as we examine the data, you too will contemplate the deeper issues at play.

        Just a warning for folks who might not be in a good mental spot for seeing this in their SQL tutorial right now, or even just if it wouldn’t be to your personal tastes. It’s not your average school exercise but with morbid flavoring, the site really integrates its data. It provides a lot more information about capital punishment than you strictly need to solve the database problems. That works nicely with their intention of “Exercises should be realistic and substantial”.

        Likewise, the exercises here have been designed to introduce increasingly sophisticated SQL techniques while exploring the dataset in ways that people would actually be interested in.

        • jadero@programming.dev
          link
          fedilink
          arrow-up
          1
          ·
          7 months ago

          I think the general idea has a lot of merit. I don’t know about execution records specifically (no death penalty in Canada for many decades), but government data sets in general.

          I retired from database stuff a decade ago, but would jump at the chance to take a course that used Canadian data from various levels of government and public institutions.

    • Pyro@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      7 months ago

      Do people actually say “select star”? When I read SQL I always say “select all” because it reads better.

  • HiddenTower@lemmy.world
    link
    fedilink
    arrow-up
    3
    ·
    7 months ago

    Execute program is another online learning tool that teaches SQL. I have used it for typescript lessons and like it a lot.