Gollum@feddit.org to Programmer Humor@programming.dev · 5 hours agoLucky enough, I am C++ Developerfeddit.orgimagemessage-square38fedilinkarrow-up1165arrow-down116
arrow-up1149arrow-down1imageLucky enough, I am C++ Developerfeddit.orgGollum@feddit.org to Programmer Humor@programming.dev · 5 hours agomessage-square38fedilink
minus-squarejjjalljs@ttrpg.networklinkfedilinkarrow-up6·edit-21 hour agoPersonally I feel like SQL syntax is upside down, and things are used before they are defined. SELECT a.id -- what the fuck is a? , a.name , b.city -- and b?? from users a -- oh join city b on a.id = b.user_id -- oh here's b I’d expect it to instead be like From users a join city b on a.id = b.user_id SELECT a.id, a.name, b.city
Personally I feel like SQL syntax is upside down, and things are used before they are defined.
SELECT a.id -- what the fuck is a? , a.name , b.city -- and b?? from users a -- oh join city b on a.id = b.user_id -- oh here's bI’d expect it to instead be like
From users a join city b on a.id = b.user_id SELECT a.id, a.name, b.city