Activity Forums Salesforce® Discussions What is a Salesforce Analytics Query Language (SAQL)?

  • shradha jain

    Member
    October 15, 2018 at 1:10 pm

    Hi Prachi,

    You can use SAQL (Salesforce Analytics Query Language) to access data in Analytics Cloud datasets.
    Analytics Cloud uses SAQL behind the scenes in lenses, dashboards, and explorer to gather data for visualizations. Users don’t write SAQL statements, they use the UI and the app makes the queries.

    Developers can write SAQL to directly access Analytics data via:

    • Analytics REST API :Build your own app to access and analyze Analytics data or integrate data with existing apps.
    • Dashboard JSON :Create advanced dashboards. A dashboard is a curated set of charts, metrics, and tables.
  • Divya

    Member
    October 26, 2018 at 1:39 pm

    Hi Prachi,

    Salesforce Analytics Query Language (SAQL): is the query language offered by Salesforce Einstein to retrieve data from various sources . The lenses and dashboards in Einstein use SAQL behind the scenes to manipulate data for meaningful visualizations

  • William

    Member
    October 30, 2018 at 3:55 am

    Use SAQL (Salesforce Analytics Query Language) to access data in Analytics datasets. Analytics uses SAQL behind the scenes in lenses, dashboards, and explorer to gather data for visualizations.

    Developers can write SAQL to directly access Analytics data via:

    ·         Analytics REST API

    Build your own app to access and analyze Analytics data or integrate data with existing apps.

    ·         Dashboard JSON

    Create advanced dashboards. A dashboard is a curated set of charts, metrics, and tables.

    The logical layers a query passes through

    Sample Query

    1   q = load "DTC_Opportunity_SAMPLE";

    2   q = group q by all;

    3   q = foreach q generate count() as 'count';

    4   q = limit q 2000;

Log In to reply.

Popular Salesforce Blogs

Popular Salesforce Videos