top of page
SQL
Structured Query Language. The standard language for querying and retrieving information for analysis. SQL can be used to query raw data, group data, aggregate data and much more. For instance to query all leads that with the persona of "Rational Ray" would translate to the following in SQL: select * from leads where persona equals 'Relational Ray'
bottom of page