1716
submitted 11 months ago by tsuica@lemmy.world to c/programmerhumor@lemmy.ml
you are viewing a single comment's thread
view the rest of the comments
[-] xmunk@sh.itjust.works 180 points 11 months ago

Speaking as a Senior Dev specialized in database access and design... you don't have to use all caps - SQL is actually case agnostic.

But... but my fucking eyes man. I'm old, if your branch doesn't have control keywords in all caps I'm going to take it out back and ol' yeller it.

There are few hills I'll die on but all caps SQL and singular table names are two of them.

[-] Nolegjoe@lemmy.world 72 points 11 months ago

I'm a sql developer, and I am completely the opposite to you. I will find it incredibly difficult to read when everything is in caps

[-] Pechente@feddit.de 131 points 11 months ago

You should do a project together

[-] agressivelyPassive@feddit.de 42 points 11 months ago
[-] DmMacniel@feddit.de 30 points 11 months ago

The commit wars will be long and bloody.

[-] SorteKanin@feddit.dk 26 points 11 months ago

Same, I prefer lower case. Every other language has keywords in lower case, why do you need to shout when writing sql?

[-] hikaru755@feddit.de 24 points 11 months ago* (last edited 11 months ago)

I understand it as an attempt to get very basic, manual syntax highlighting. If all you have is white text on black background, then I do see the value of making keywords easy to spot by putting them in all caps. And this probably made sense back when SQL was first developed, but it's 2023, any dev / data scientist not using a tool that gives you syntax highlighting seriously needs to get with the times

[-] xmunk@sh.itjust.works 13 points 11 months ago* (last edited 11 months ago)

Partially, yes. I personally use an IDE with excellent syntax highlighting and those have been around for at least two decades. You are, however, often transplanting your SQL between a variety of environments and in some of those syntax highlighting is unavailable (for me at least) - the all caps does help in those rare situations.

More importantly though it helps clearly differentiate between those control keywords (which are universal) and data labels (which are specific to your business domain). If I'm consulting on a complex system that I only partially understand it's extremely helpful to be able to quickly identify data labels that I'm unfamiliar with to research.

[-] Bonehead@kbin.social 10 points 11 months ago* (last edited 11 months ago)

it's 2023, any dev / data scientist not using a tool that gives you syntax highlighting seriously needs to get with the times

You say that as if AS400 systems with only console access don't exist anymore.

[-] hikaru755@feddit.de 3 points 11 months ago

Well then use all-caps keywords whenever working on those systems, I don't care. But an edge case like that shouldn't dictate the default for everyone else who doesn't have to work on that, that's all I'm saying.

[-] Bonehead@kbin.social 5 points 11 months ago

There are several cases where you'll be limited to console only, or log files, or many many other situations. Good coding practices just makes life easier all around.

[-] Stumblinbear@pawb.social 9 points 11 months ago* (last edited 11 months ago)

Please tell me what IDE you're using that's capable of highlighting SQL syntax that's embedded inside another language source file

Also please fucking stop with the "it's current year stop x." The year is not an argument.

[-] hedgehog@ttrpg.network 4 points 11 months ago

JetBrains IDEs - IntelliJ, WebStorm, PyCharm, GoLand, etc., all support highlighting SQL embedded in another source file or even inside markup files like YAML. Does your IDE not support this?

[-] Stumblinbear@pawb.social 1 points 11 months ago

RustRover isn't ready for actual usage, I've tried it

[-] xmunk@sh.itjust.works 2 points 11 months ago* (last edited 11 months ago)

Sublime is actually great at that especially when I keep my SQL in heredocs.

[-] hikaru755@feddit.de 2 points 11 months ago

As the other commenter said, the Jetbrains IDEs do this perfectly fine. Although I'd also argue that if you're working with SQL from within another language already, a DSL wrapper is probably gonna be the better way to go about this.

[-] Stumblinbear@pawb.social 2 points 11 months ago* (last edited 11 months ago)

Unfortunately RustRover is still garbage for actual usage. And I refuse to use an ORM when I can just write the SQL in a more common syntax that everyone understands across every language instead of whatever inefficient library-of-the-week there is. Raw SQL is fine and can be significantly more performant. Don't be scared.

[-] hikaru755@feddit.de 2 points 11 months ago

I'm not talking full blown ORM here, not a fan of those either. I'm talking about some light weight wrapper that basically just assembles SQL statements for you, while giving you just a little more type safety and automatic protection against SQL injection, and not sacrificing any performance. I'm coming from the JVM world, where Jooq and Exposed are examples of that kind of thing.

[-] Stumblinbear@pawb.social 1 points 11 months ago* (last edited 11 months ago)

I'm currently using SQLx which you write raw queries in and it validates them against a currently-running db, using the description of the tables to build the typing for the return type instead of relying on the user. It makes it pretty hard to write anything that supports injection

[-] hikaru755@feddit.de 2 points 11 months ago

Oh, that sounds really cool! At what time does this validation happen? While you code, or later at build time?

[-] Stumblinbear@pawb.social 3 points 11 months ago

Happens at compile time! It's relatively quick. You can also run a command to write the query results to file for offline type checking which is mostly useful for CI

[-] jaybone@lemmy.world 3 points 11 months ago

Also some people are color blind.

Also you might need to ssh in somewhere and vi some code or tail a log file where you don’t have color support.

[-] hikaru755@feddit.de 2 points 11 months ago

My ide isn't limited to color when it comes to highlighting, so being color blind generally shouldn't be a problem. Set keywords to underlined, bold, italic, whatever works for you.

Your other examples I can see, but at least at my work those are rare edge cases, and I'd rather optimize for the brunt of the work than for those. Of course at other places those might be much more of a concern.

[-] Simulation6@sopuli.xyz 14 points 11 months ago

Just some key words in uppercase (FROM, JOIN,WHERE,etc) so they pop out

[-] xmunk@sh.itjust.works 3 points 11 months ago

Yea - you want the structure in a recognizable form so that you can quickly confirm code patterns for comprehension.

[-] neo@lemmy.comfysnug.space 10 points 11 months ago

THE DATABASE CAN'T HEAR ME IF I DON'T SCREAM

[-] Hupf@feddit.de 1 points 10 months ago

What about Intercal?

[-] xmunk@sh.itjust.works 18 points 11 months ago* (last edited 11 months ago)

Sorry, to clarify, not everything is in all caps. I'll append my prefered syntax below

WITH foo AS (
    SELECT id, baz.binid
    FROM
            bar
        JOIN baz
            ON bar.id = baz.barid
)
SELECT bin.name, bin.id AS binid
FROM
        foo
    JOIN bin
        foo.binid = bin.id

The above is some dirt simple SQL, when you get into report construction things get very complicated and it pays off to make sure the simple stuff is expressive.

[-] NedDasty@lemmy.world 16 points 11 months ago

You indent your JOIN? Why on earth? It lives in the same context as the SELECT.

[-] xmunk@sh.itjust.works 9 points 11 months ago

I've seen both approaches and I think they're both quite reasonable. An indented join is my preference since it makes sub queries more logically indented... but our coding standards allow either approach. We've even got a few people that like

FROM foo
JOIN bar ON foo.id = bar.fooid
JOIN baz ON bar.id = baz.barid
[-] callcc@lemmy.world 6 points 11 months ago

Actually not. It's part of the FROM

[-] Stumblinbear@pawb.social 2 points 11 months ago

That double indented from is hurting me

[-] Cold_Brew_Enema@lemmy.world 1 points 11 months ago

Um you forgot the semicolon before with assuming there isn't one in the previous statement. Syntax error. Code review failed

[-] xmunk@sh.itjust.works 5 points 11 months ago

There's no way we're running in multi statement mode... I like my prepared queries, thank you very much.

[-] Steeve@lemmy.ca 3 points 11 months ago

I'm at a Data Engineer and I alternative caps lock and non caps lock at random

load more comments (47 replies)
this post was submitted on 19 Oct 2023
1716 points (100.0% liked)

Programmer Humor

32058 readers
1532 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS