« back to all changes in this revision
Viewing changes to docs/functions/logical.rst
more comparison operators
Show diffs side-by-side
added
removed
185
188
.. _greater_than:
192
198
.. _less_or_equal:
194
200
LESS THAN OR EQUAL
195
201
-------------------
203
Less than or equal: ::
199
209
.. _greater_or_equal:
201
211
GREATER THAN OR EQUAL
202
212
----------------------
214
Greater than or equal: ::
245
SELECT '.01' <> '0.01';
247
SELECT .01 <> '0.01';
249
SELECT 'zapp' <> 'zappp';