mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-18 21:52:28 +03:00
1d6e260533
* cleanup magefile; antlr stuff * fixed broken magefile * Tidy up grammar directory * antlr tools
13 lines
351 B
Plaintext
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;
|
|
|
|
|
|
|