Best of SQLMarch 2023

  1. 1
    Article
    Avatar of bytebytegoByteByteGo·3y

    EP50: Visualizing a SQL Query

    The most useful engineering conversation you’ll hear each week (Sponsored) Dev Interrupted is the No. 1 source for what the smartest minds in development are thinking about. Hear career-changing wisdom by leaders from companies like Slack, Stripe, and Shopify delivered to your inbox every week.

  2. 2
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    Advanced SQL Techniques for Complex Queries

    Learn about advanced SQL techniques such as window functions, Common Table Expressions (CTEs), and recursive queries. These techniques can help you perform complex data analyses and manipulations with greater precision and efficiency.

  3. 3
    Article
    Avatar of kdnuggetsKDnuggets·3y

    SQL Query Optimization Techniques

    Learn how to optimize SQL queries for faster and more memory efficient execution. Topics include using EXIST() instead of COUNT(), using varchar instead of char, avoiding subqueries in WHERE clause, ordering JOINs from a larger table to a smaller table, and using regexp_like instead of LIKE clause.

  4. 4
    Article
    Avatar of rubylaRUBYLAND·3y

    Pairing with GPT-4

    GPT-4 can be helpful for Ruby developers in creating a Ruby script that downloads a RubyGem, parses the docs using YARD, and stores the data in a SQLite database. However, GPT-4 has limitations and may require additional troubleshooting and refinements. The provided post offers step-by-step instructions for creating the script and addresses common issues encountered.

  5. 5
    Article
    Avatar of bartwullemsThe Art of Simplicity·3y

    The lost art of writing SQL queries

    Most (junior) developers no longer are able to write anything but the most trivial queries. If you want to sharpen your SQL skills, have a look at https://www.sql-practice.com/. Here you get a whole list of exercises that require writing SQL queries. If you get stuck hints are available that help you get on the right track.

  6. 6
    Article
    Avatar of pointerPointer·3y

    whoiskatrin/sql-translator: SQL Translator is a tool for converting natural language queries into SQL code using artificial intelligence. This project is 100% free and open source.

    A tool for converting natural language queries into SQL code using artificial intelligence.

  7. 7
    Article
    Avatar of foojayioFoojay.io·3y

    5 Great Reasons to use jOOQ

    JOOQ is an internal domain-specific language (DSL) modelling the SQL language as an API directly in Java. This provides compile-time type safety to your query and enables a lot of other interesting features that I'll show later. JOOQ's code generator also generates stubs for your stored procedures.