I don't need your query language
antonz.org
I don't need your query language
1–10 of 304 posts
Re: I don't need your query language
#2Re: I don't need your query language
#3Re: I don't need your query language
#4You need to state what you want (select a, b, c) before you tell it from where to get it (from). And no tooling can predict that.
So switching this, moving from and joins in front of select, might be everything needed to fix sql.
Re: I don't need your query language
#5The main issue with sql is, that it is the wrong way around, which eliminates all tooling support. You need to state what you want (select a, b, c) before you tell it from where to get it (from). And no tooling can predict that. So switching this, moving from and joins in front of select, might be everything needed to fix sql.
You know I think you're right.
Re: I don't need your query language
#6In case anyone is wondering he is talking about EdgeDB ( https://www.edgedb.com/ )
I have absolutely nothing against EdgeDB or its creators. As far as I can tell, it's a great product.
Re: I don't need your query language
#7The main issue with sql is, that it is the wrong way around, which eliminates all tooling support. You need to state what you want (select a, b, c) before you tell it from where to get it (from). And no tooling can predict that. So switching this, moving from and joins in front of select, might be everything needed to fix sql.
Re: I don't need your query language
#8The main issue with sql is, that it is the wrong way around, which eliminates all tooling support. You need to state what you want (select a, b, c) before you tell it from where to get it (from). And no tooling can predict that. So switching this, moving from and joins in front of select, might be everything needed to fix sql.
Ain't broke.
Re: I don't need your query language
#9The main issue with sql is, that it is the wrong way around, which eliminates all tooling support. You need to state what you want (select a, b, c) before you tell it from where to get it (from). And no tooling can predict that. So switching this, moving from and joins in front of select, might be everything needed to fix sql.
var result = from s in stringList where s.Contains("Tutorials") select s;
Re: I don't need your query language
#10The main issue with sql is, that it is the wrong way around, which eliminates all tooling support. You need to state what you want (select a, b, c) before you tell it from where to get it (from). And no tooling can predict that. So switching this, moving from and joins in front of select, might be everything needed to fix sql.