Reddit Reddit reviews SQL and Relational Theory: How to Write Accurate SQL Code

We found 4 Reddit comments about SQL and Relational Theory: How to Write Accurate SQL Code. Here are the top ones, ranked by their Reddit score.

Computers & Technology
Books
SQL
Databases & Big Data
SQL and Relational Theory: How to Write Accurate SQL Code
Used Book in Good Condition
Check price on Amazon

4 Reddit comments about SQL and Relational Theory: How to Write Accurate SQL Code:

u/[deleted] · 8 pointsr/programming

> And that's perfectly fine, because the relational model is not practical enough for real world uses.

You had me right up until this. Why do you say that it's not practical enough? I've lost count of the number of problems I've encountered in SQL databases that wouldn't have happened--couldn't have happened--had the database been truly relational. Whole classes of these kinds of issues, and their solutions, are found in SQL and Relational Theory: How to Write Accurate SQL Code. So this is not a troll; I'm genuinely curious as to what you mean. Thanks!

u/thethax · 3 pointsr/SQL

http://db-class.org is open this quarter, and covers the fundamental relational database concepts.

SQL and Relational Theory is a solid next step. (and available using the free 10 day Safari Books Online trial account)

For specific syntax, refer to Microsoft's own product documentation. The SQL Server Books Online should have been installed on your workstation along with the client tools if you're using SSMS. The T-SQL language reference begins here.

You might also want to install one of the SQL Server editions on a workstation as a playground so you don't need to worry about breaking your production servers. Developer Edition is under $50 a seat. Express is free. There's also a time-limited full evaluation copy available here.

u/dkubb · 1 pointr/programming

Actually C.J. Date updated that book and released it under the new name SQL and Relational Theory: How to Write Accurate SQL Code.

I read Database in Depth a few months ago, and my copy of SQL and Relational Theory just arrived. In the preface Date states that he wanted to provide similar information -- updated to match his current understanding -- but use SQL as a concrete example of his theories. It's definately worth a read though, because most developers use SQL in a way that is not compatible with Relational Theory.