|
|
|
|
|
by tester756
1751 days ago
|
|
>SQL has a steep learning curve. Does it? I think SQL just sucks and its tooling sucks too Even SQL Management Studio which felt way better than PGAdmin is miles behind IntelliSense that's offered by Visual Studio for C# (when it comes to reliability) SQL would benefit a lot from being like C#'s LINQ (Query syntax) e.g: var result = from s in stringList where s.Contains("Tutorials")
select s;
some SQLv2 is something we need |
|