Gollum@feddit.org to Programmer Humor@programming.dev · 10 hours agoLucky enough, I am C++ Developerfeddit.orgimagemessage-square71fedilinkarrow-up1286arrow-down125
arrow-up1261arrow-down1imageLucky enough, I am C++ Developerfeddit.orgGollum@feddit.org to Programmer Humor@programming.dev · 10 hours agomessage-square71fedilink
minus-squarejjjalljs@ttrpg.networklinkfedilinkarrow-up10·edit-26 hours 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