lookup_join.sql 238 B

123456789
  1. pragma dq.UseWideChannels = "true";
  2. use plato;
  3. select e.id as id, e.ts as ts, e.host as host, h.fqdn as fqdn, h.ip4 as ip4, h.ip6 as ip6
  4. from Event as e
  5. left join /*+ streamlookup() */ Host as h
  6. on (e.host == h.hostname)
  7. ;