From 3dedf13c37a730153c4d532a6d822f52206a2bfc Mon Sep 17 00:00:00 2001 From: Honza Jerabek Date: Thu, 7 Jun 2018 12:14:14 +0200 Subject: [PATCH] Fix dead links in 04_query.md Original site has moved to Github http://savage.net.au/SQL.html --- docs/spec/04_query.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/spec/04_query.md b/docs/spec/04_query.md index 70b5c014..bda8a474 100644 --- a/docs/spec/04_query.md +++ b/docs/spec/04_query.md @@ -190,13 +190,13 @@ db.select(p.id, a.id, a.name). Search conditions is the condition combinations used inside `where()`. In SQL, it’s actually a boolean value expression, whose grammar can be found -[here](http://savage.net.au/SQL/sql-2003-2.bnf.html#boolean%20value%20expression +[here](https://ronsavage.github.io/SQL/sql-2003-2.bnf.html#boolean%20value%20expression ). Lovefield provides following building blocks to help users construct their search conditions. Search conditions are orchestrated by predicates. Lovefield uses various predicates to provide a subset of [nonparenthesized value expression primary]( -http://savage.net.au/SQL/sql-2003-2.bnf.html#nonparenthesized%20value%20expression%20primary) +https://ronsavage.github.io/SQL/sql-2003-2.bnf.html#nonparenthesized%20value%20expression%20primary) in SQL grammar. These predicates are generated from predicate providers: |Function |Number of parameters |SQL equivalent |