Glossary
Learn commonly referenced terms and phrases used in Data & Artificial Intelligence
Schema
A schema refers to the design of a database, including which fields are currently configured, what data types of stored in these fields. If you were to think of a database as a spreadsheet with columns and rows, the schedule would be the first row that defines the field names, plus the data types and formatting rules for each column.
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'