Skip to main content

People + Companies + Insights

People + Companies + Insights is a pre-joined table that combines Contacts, Companies, and Insights in one view. Each row represents a contact with company and insight attributes already joined.

What it is

Use this view when you need contact, company, and insight (e.g., scores or signals) columns in a single query. No need to join the three base tables yourself — the view is maintained for you.

Key columns (placeholder)

ColumnTypeDescription
contact_idbigintUnique contact identifier.
company_idbigintUnique company identifier.
emailstringContact email.
company_namestringCompany name.
insight_typestringType of insight.
insight_valuestringInsight value or score.
Other fields.
Exact columns depend on your schema. Use the Data dictionary for the full list.

Example query

SELECT contact_id, email, company_name, insight_type, insight_value
FROM people_companies_insights
WHERE insight_type = 'intent_score'
LIMIT 100;
Replace people_companies_insights and column names with your actual view name and schema.

See also

Placeholder: Replace with your actual view name, column list, and sample queries.