Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

What about joins, are they supported? Can't see them in the examples.

The real power of SQL is locked until you can join different data sources.




Yes - joins work across tables and schemas! This (toy) example connects IAM user records with Slack user data:

    select u.name, s.id, s.display_name
    from aws_iam_user as u, slack_user as s
    where u.name = s.email


Steampipe is pretty much "just" PostgreSQL with a foreign data wrapper and some fancy extras on top. The data is in tables from the database's perspective, so pretty much everything you can do with PostgreSQL, you can do with steampipe, including creating your own tables, views, functions and whatnot.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: