sq/grammar/testdata/all-valid.slq
Neil O'Toole 1d6e260533
Clean up the antlr tooling (#131)
* cleanup magefile; antlr stuff

* fixed broken magefile

* Tidy up grammar directory

* antlr tools
2022-12-24 09:43:21 -07:00

13 lines
351 B
Plaintext

@mydb1 | .user, .address | join( .user.uid == .address.uid) | .email, .username, .country;
@mydb1 | .user, .address | join( .uid ) | .user.uid, .username, .country;
@mydb1 | .user | .[1];
@mydb1 | .user | .[0:2];
@mydb1 | .user | .[:3];
@mydb1 | .user | .[2:];
@mydb1 | .user | .[];
@mydb1 | .user | .uid, .username;
@mydb1.user | .uid, .username;