|
0: jdbc:luciddb:http://localhost> --20
0: jdbc:luciddb:http://localhost> select
. . . . . . . . . . . . . . . . > s_name,
. . . . . . . . . . . . . . . . > s_address
. . . . . . . . . . . . . . . . > from
. . . . . . . . . . . . . . . . > supplier, nation
. . . . . . . . . . . . . . . . > where
. . . . . . . . . . . . . . . . > s_suppkey in (
. . . . . . . . . . . . . . . . > select
. . . . . . . . . . . . . . . . > ps_suppkey
. . . . . . . . . . . . . . . . > from
. . . . . . . . . . . . . . . . > partsupp
. . . . . . . . . . . . . . . . > where
. . . . . . . . . . . . . . . . > ps_partkey in (
. . . . . . . . . . . . . . . . > select
. . . . . . . . . . . . . . . . > p_partkey
. . . . . . . . . . . . . . . . > from
. . . . . . . . . . . . . . . . > part
. . . . . . . . . . . . . . . . > where
. . . . . . . . . . . . . . . . > p_name like 'forest%'
. . . . . . . . . . . . . . . . > )
. . . . . . . . . . . . . . . . > and ps_availqty > (
. . . . . . . . . . . . . . . . > select
. . . . . . . . . . . . . . . . > 0.5 * sum(l_quantity)
. . . . . . . . . . . . . . . . > from
. . . . . . . . . . . . . . . . > lineitem
. . . . . . . . . . . . . . . . > where
. . . . . . . . . . . . . . . . > l_partkey = ps_partkey
. . . . . . . . . . . . . . . . > and l_suppkey = ps_suppkey
. . . . . . . . . . . . . . . . > and l_shipdate >= date '1994-01-01'
. . . . . . . . . . . . . . . . > and l_shipdate < date '1995-01-01'
. . . . . . . . . . . . . . . . > )
. . . . . . . . . . . . . . . . > )
. . . . . . . . . . . . . . . . > and s_nationkey = n_nationkey
. . . . . . . . . . . . . . . . > and n_name = 'CANADA'
. . . . . . . . . . . . . . . . > order by
. . . . . . . . . . . . . . . . > s_name;
+---------------------+-------------------------------------------+
| S_NAME | S_ADDRESS |
+---------------------+-------------------------------------------+
| Supplier#000000020 | iybAE,RmTymrZVYaFZva2SH,j |
...
| Supplier#000099852 | wDwUzzJDDjkemvkWc75Pw |
| Supplier#000099853 | zC1TZJiRLFu2I129lxqdI6QB |
| Supplier#000099869 | ZDpGfmbiqeGovro2O6frw302sqW |
| Supplier#000099877 | d35WQgRbGIaZiPCv20ymP5bTV |
| Supplier#000099942 | LJJzV6PR4YnaDm6LCRcw |
| Supplier#000099944 | cQEyJwZdneGvmnO,Skk |
| Supplier#000099980 | As8Iaeb75i1DfvXqnl0M6eQFeax4 |
+---------------------+-------------------------------------------+
1,968 rows selected (140.806 seconds) |
|