Gollum@feddit.org to Programmer Humor@programming.dev · 7 days agoLucky enough, I am C++ Developerfeddit.orgimagemessage-square115linkfedilinkarrow-up1483arrow-down135
arrow-up1448arrow-down1imageLucky enough, I am C++ Developerfeddit.orgGollum@feddit.org to Programmer Humor@programming.dev · 7 days agomessage-square115linkfedilink
minus-squarejjjalljs@ttrpg.networklinkfedilinkarrow-up18·7 days 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