-
Notifications
You must be signed in to change notification settings - Fork 0
/
query.cql
27 lines (20 loc) · 1.17 KB
/
query.cql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
=> Query: catalog
select * from employee;
select * from employee where id='1' ALLOW FILTERING;
select * from employee where sex='female' ALLOW FILTERING;
select * from employee where sex='male' and address='Ho Chi Minh City' ALLOW FILTERING;
/////////////////////////////////////////////////////////////////////////////////////////
select * from catalog.employee;
select * from catalog.employee where id='1' ALLOW FILTERING;
select * from catalog.employee where sex='female' ALLOW FILTERING;
select * from catalog.employee where sex='male' and address='Ho Chi Minh City' ALLOW FILTERING;
=> Query: tracking
select * from tracking_salary;
select * from tracking_salary where id='1' ALLOW FILTERING;
select * from tracking_salary where first_name='An' ALLOW FILTERING;
select * from tracking_salary where salary>10000000 ALLOW FILTERING;
/////////////////////////////////////////////////////////////////////////////////////////
select * from tracking.tracking_salary;
select * from tracking.tracking_salary where id='1' ALLOW FILTERING;
select * from tracking.tracking_salary where first_name='An' ALLOW FILTERING;
select * from tracking.tracking_salary where salary>10000000 ALLOW FILTERING;