You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -466,25 +466,25 @@ You can use JSON objects in your databases (do not forget use == and !== operato
466
466
467
467
```sql
468
468
469
-
alasql> SELECT VALUE {a:'1',b:'2'}
469
+
alasql> SELECT VALUE @{a:'1',b:'2'}
470
470
471
471
{a:1,b:2}
472
472
473
-
alasql> SELECT VALUE {a:'1',b:'2'} == {a:'1',b:'2'}
473
+
alasql> SELECT VALUE @{a:'1',b:'2'} == @{a:'1',b:'2'}
474
474
475
475
true
476
476
477
-
alasql> SELECT VALUE {a:'1',b:'2'}->b
477
+
alasql> SELECT VALUE @{a:'1',b:'2'}->b
478
478
479
479
2
480
480
481
-
alasql> SELECT VALUE {a:'1',b:(2*2)}->b
481
+
alasql> SELECT VALUE @{a:'1',b:(2*2)}->b
482
482
483
483
4
484
484
485
485
```
486
486
487
-
Try AlaSQL JSON objects in Console [sample](http://alasql.org/console?drop table if exists one;create table one;insert into one values {a:@[1,2,3],c:{e:23}}, {a:@[{b:@[1,2,3]}]};select * from one)
487
+
Try AlaSQL JSON objects in Console [sample](http://alasql.org/console?drop table if exists one;create table one;insert into one values @{a:@[1,2,3],c:{e:23}}, @{a:@[{b:@[1,2,3]}]};select * from one)
488
488
489
489
490
490
@@ -535,7 +535,7 @@ Please be aware that AlaSQL ~~may~~ have [bugs](https://github.com/agershun/alas
535
535
536
536
0. Limited functionality for transactions (supports only for localStorage) - Sorry, transactions are limited, because AlaSQL started to use more complex approach for PRIMARY KEYS / FOREIGN KEYS. Transactions will be fully turned on again in future version.
537
537
538
-
0. A `(FULL) OUTER JOIN` and `RIGHT JOIM` on more than 2 tables will not give the expected results. `INNER JOIN` and `LEFT JOIN` are ok.
538
+
0. A `(FULL) OUTER JOIN` on more than 2 tables will not give the expected results
539
539
540
540
Probably, there are many of others. Please, help us to fix them by [submitting it as an issue](https://github.com/agershun/alasql/issues). Thank you!
541
541
@@ -609,4 +609,4 @@ and other people for useful tools, which make our work much easier.
0 commit comments