Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/rxm.git

More README clarifications.

Author Dave Jarvis <email>
Date 2015-03-14 16:23:45 GMT-0700
Commit ea96337c6d98d70d63520ff420f0a6a1defe0aca
Parent 8b8bbac
Delta 14 lines added, 15 lines removed, 1-line decrease
README.md
## Where
-Example `WHERE` clauses include:
+Example **rxm** where expressions include:
```
-account.id = $id # $ starts a named parameter
-account.id <> $id # inequality parameter comparison
-account.id = {$id, 1} # becomes IN set
-account.id <> {$id, 1} # becomes NOT IN set
-account.id = null # becomes IS NULL
-account.id <> null # becomes IS NOT NULL
-account.id = 'text' # string equality comparison
-account.id = -42 # numeric equality comparison
-account.id < 42 # numeric less than comparison
-account.id > 42 # numeric greater than comparison
-account.id <= 42 # numeric less than or equal to comparison
-account.id >= 42 # numeric greater than or equal to comparison
+account.id = $id # $ starts a named parameter
+account.id <> $id # inequality parameter comparison
+account.id = {$id, 1} # becomes IN set
+account.id <> {$id, 1} # becomes NOT IN set
+account.id = null # becomes IS NULL
+account.id <> null # becomes IS NOT NULL
+account.id = 'text' # string equality comparison
+account.id = -42 # numeric equality comparison
+account.id < 42 # numeric less than comparison
+account.id > 42 # numeric greater than comparison
+account.id <= 42 # numeric less than or equal to comparison
+account.id >= 42 # numeric greater than or equal to comparison
```
-The clauses are straightforward and correlate with SQL `WHERE` clauses as
-expected.
+The clauses correlate with SQL `WHERE` clauses as expected.
### Variables