Most active commenters

    SQL Design Patterns

    (vadimtropashko.wordpress.com)
    108 points mci | 27 comments | | HN request time: 1.663s | source | bottom
    1. potatoproduct ◴[] No.45077193[source]
    Not ashamed to admit that I never really thought about the distinct operator 'being redundant' as its essentially just a group by.
    replies(3): >>45077523 #>>45078843 #>>45079717 #
    2. jslaby ◴[] No.45077204[source]
    Of course, trying out the first example doesn't work on SQL Server..
    replies(1): >>45077229 #
    3. datadrivenangel ◴[] No.45077229[source]
    "We use Oracle syntax and write <column expr> <alias> instead of ANSI SQL <column expr> AS <alias>. Ditto for table expressions"

    Footnote on page 3.

    replies(1): >>45077468 #
    4. jslaby ◴[] No.45077468{3}[source]
    T-SQL can handle that alias expr just fine, but the seqNum returned is 4,8,12,16,20 instead of the 1,2,3... I tried on MySQL and it works fine. I'm not sure how SQL Server is handling those cartesian joins differently
    5. morkalork ◴[] No.45077523[source]
    distinct has always felt like a query smell to me. Too many junior analysts abusing it because they don't know the schema well and are over-joining entities
    replies(2): >>45078136 #>>45078258 #
    6. alphazard ◴[] No.45077668[source]
    I always tell people to worry about the data structures that you want the database to maintain for you, and not worry about the SQL. You can always use Google to look up the SQL, or now ChatGPT to generate it for you. SQL is a not-that-great language and it intentionally hides what's going on. It is also different enough between databases that you need to pay attention. So learning to design/think in terms of SQL is probably not worth doing.

    The set of data structures that you use to model and index a dataset is worth understanding, and designing in that space is a skill worth learning.

    replies(4): >>45078199 #>>45078627 #>>45078711 #>>45081027 #
    7. ◴[] No.45077774[source]
    8. dspillett ◴[] No.45078019[source]
    This is rather old and there are better ways of doing most of these things now. For instance the counting example would usually be much more efficient performed using the ROW_NUMBER() window function instead of a Cartesian product. When you can remove a cross product from your process it is almost always beneficial to do so. That will often involve introducing a CTE⁰¹ which might put off some beginners²³, but it shouldn't as this sort of example is pretty simple (you aren't worrying about any recursive case).

    ----

    [0] Because you want the ordinal of the row in the input table/view, not your output.

    [1] You could also use a sub-query, in most cases a good query planner will see the equivalence and do the same thing for either. The CTE option is easier to read and maintain IMO.

    [2] In databases, like sports, CTEs can result in headaches!

    [3] Or veterans of postgres, where until a few years ago CTEs were an optimisation gate, blocking predicate push-down and making some filtered queries a lot more expensive (though often no more so than the naive Cartesian product method).

    9. phartenfeller ◴[] No.45078087[source]
    SQL is beautiful in its own way. Definitely not easy to master but beautiful in how much business logic you can implement in not many lines of code.

    And with SQL macros becoming a thing it is now easily possible to store patterns as reausable functions with parameters.

    10. dspillett ◴[] No.45078136{3}[source]
    DISTINCT is often a smell at the head (or middle) of a complex query as you are throwing away processed information, sometimes a lot of it, late in the game. Much better to filter it out earlier and not process it further, where possible. Filtering earlier, as well as reducing waste processing time (and probably memory use), increases the chance of the query planner being able to use an index for the filter which could greatly decrease the IO cost of your query.
    11. yakshaving_jgt ◴[] No.45078199[source]
    For posterity, how would you recommend the average working programmer should go about doing that?
    replies(2): >>45078239 #>>45079355 #
    12. ryanjshaw ◴[] No.45078239{3}[source]
    Read code from other projects
    13. ryanjshaw ◴[] No.45078258{3}[source]
    Sometimes the number of joins is fine but they don’t understand the data properly and should be spending more time understanding why multiple rows are being returned when they expect one (eg they need to filter on an additional field).

    I wish SQL had a strict mode syntax that forces you to use something like `select one` (like LINQ’s Single()) or `select many` to catch these kinds of bugs.

    14. sgarland ◴[] No.45078627[source]
    Frankly, this is terrible advice. If you’re not designing your data model around the language it’s going to be queried in, how do you expect to get decent performance out of the database?

    Also, in no way does SQL hide anything - it’s a declarative language, and will produce exactly what you tell it to, provided you understand what it is you asked it to do. The query engine is somewhat of a black box, but that is completely orthogonal.

    replies(2): >>45078761 #>>45079856 #
    15. awesome_dude ◴[] No.45078711[source]
    I don't get this - my database is going to be normalised to whatever is optimal (3rd normal form generally, denormalised for higher load/sharded/caching)

    The indexing is where the main optimisations take place - hashmap indexes, or clustering indexes for priority queues.

    What am I missing?

    16. paulddraper ◴[] No.45078761{3}[source]
    SQL is a declarative language so it —- by definition —- hides the execution.

    Not really sure what you’re trying to argue here.

    replies(2): >>45079245 #>>45079749 #
    17. stevage ◴[] No.45078843[source]
    Huh, I have always just thought of it as a syntactic shortcut.
    18. sgarland ◴[] No.45079245{4}[source]
    Parent made it sound - to me - that you put an input in and hope for the best. If you understand the operators, you can quite confidently predict an output given an input.
    replies(1): >>45079453 #
    19. alphazard ◴[] No.45079355{3}[source]
    An intro data structures course is worth watching if you haven't taken one. There are plenty of them on YouTube. Try to follow along with a language that has an explicit pointer type. Go is a good choice. Java and Python are worse choices (for this particular thing) IMO.

    Assuming you are familiar with trees and hashmaps, you have all the important building blocks. You can imagine a database as a bunch of trees, hashmaps and occasionally other stuff, protected by a lock. First you acquire the lock, then you update some of the data structures, and maybe that requires you to update some of the other data structures (like indexes) for consistency. Then you release the lock.

    By default, most data will live in a BTree with an integer primary key, and that integer is taken from a counter that you increment for new inserts. Indexes will be BTrees where the key is stuff you want to query on, and the value is the primary key in the main table.

    Using just those data structures you should be able to plan for any query or insert pattern. It helps to figure this out yourself in a programming language for a few practice cases, so you know you can do it. Eventually it will be easy to figure out what tables and indexes you need in your head. In the real world, this stuff is jotted down in design docs, often as SQL or even just bullets.

    That's really all you need, and that's where I recommend getting out of the rabbit hole. Query planners are pretty good. You can usually just write SQL and if you did the work to understand what the tables and indexes should be, the planner will figure out how to use them to make the query fast.

    replies(1): >>45079772 #
    20. halfcat ◴[] No.45079453{5}[source]
    > If you understand the operators

    That’s the point. In an imperative language if you don’t yet understand (or make a typo, or whatever), you can just print/console.log and find out.

    I’ve seen junior devs, data analysts, and LLMs spin their wheels trying to figure out why adding a join isn’t producing the output they want. I don’t think they would figure it out using SQL alone if you gave them a month.

    21. paulddraper ◴[] No.45079717[source]
    SELECT DISTINCT is often a code smell. (Not always.) If you see it, there’s a 70% chance it got slapped on to fix an issue that should have been solved a different way.

    SELECT DISTINCT ON is different, and useful.

    22. crazygringo ◴[] No.45079749{4}[source]
    You missed the "performance" part.

    Depending on how you write your query and how you structure your data, a query can take 0.005 seconds or 500 seconds.

    SQL hiding the execution is an extremely leaky abstraction. To get the performance you need, you have to plan your possible queries in advance together with how to structure the data.

    I mean, it doesn't matter if you only have 100 rows per table, but once you're dealing with multiple tables with millions of rows each it's everything.

    23. belfthrow ◴[] No.45079772{4}[source]
    Java is a bad language for this compared to go? Is this legitimate advice on a serious programming blog. Pretty unbelievable honestly.
    24. chasil ◴[] No.45079856{3}[source]
    > Also, in no way does SQL hide anything - it’s a declarative language, and will produce exactly what you tell it to.

    Ha ha, no, SQL implementations can conform to the standard in unexpected ways.

    NULL = NULL

    Is that true or false? We didn't know until 2003.

    https://en.wikipedia.org/wiki/Null_(SQL)#Criticisms

    replies(1): >>45080197 #
    25. gfody ◴[] No.45080197{4}[source]
    that's not true or false it's null
    26. baq ◴[] No.45081027[source]
    You’re kinda right, but designing for a particular RDBMS with awareness of queries which will be performed thus indexes necessary (…or not ;) is really not that far away from what you propose. The only issue is beginner SQL learning material says ‘it’s declarative, don’t worry about what’s happening as long as you get a good result’ and that just isn’t true in any non-trivial applications of SQL.