SOQL Basics | Developer Quick Takes

Sdílet
Vložit
  • čas přidán 9. 08. 2022
  • Learn the basics of SOQL, the Salesforce Object Query Language
    Blog - Working with Salesforce Records Using SOQL and DML: sforce.co/3VgYxWp
    00:00: Intro
    00:38: Multitenancy
    01:23: SOQL and the query optimizer
    01:52: DML
    02:18: Custom objects that we’ll use for the examples
    02:44: Relationships
    03:21: SOQL query syntax
    04:38: Salesforce Extensions for VSCode
    05:01: SOQL Builder
    06:20: Running queries by selecting text
    06:39: Writing queries in Apex
    07:32: Running anonymous Apex by selecting text
    08:11: Binding an Apex variable into a query
    08:47: Relationship queries
    09:06: Child-to-parent queries
    10:41: Parent-to-children queries
    12:25: Resources
    Connect with Salesforce Developers:
    Website: developer.salesforce.com/
    Facebook: / salesforcedevs
    Twitter: / salesforcedevs
    LinkedIn: / salesforce-developers
  • Věda a technologie

Komentáře • 11

  • @josephkurian
    @josephkurian Před rokem +4

    Wonderful way of explaining. I really like it.

  • @mukeshsingh-bv7rd
    @mukeshsingh-bv7rd Před rokem +2

    Hello, Alba. and the Salesforce developer team's contents were wonderful, except for a bit more advanced level SOQL with more examples.

  • @SalesforceUSA
    @SalesforceUSA Před rokem +2

    Good video. We recommend this.

  • @sampathkumar8868
    @sampathkumar8868 Před rokem +2

    Thanks 👍

  • @RicRod
    @RicRod Před rokem

    Interesting video, what is Apex? With Apex have edit options of a database

  • @user-ej6lu1kx7p
    @user-ej6lu1kx7p Před rokem

    Hello Alba, very good explanation can u please explain how can we query Notes & attachments related to an Account or any object by SOQL. Also, why is Notes & Attachment not shown in Object Manager? I looked for documentation but didn't find any solution.

  • @johnmaynor3851
    @johnmaynor3851 Před rokem

    I believe I ran across a module on the Trailhead for the Platform Developer 1 that helped the Field Label rather than the field name where it functions like Oracle SQL. Can someone help me with the syntax?
    Oracle SQL example:
    select ID, firstname as "First Name" from table_name;

  • @ianroque3308
    @ianroque3308 Před rokem +1

    What is the reason behind why salesforce didnt make soql capable of updating/inserting record directly? Unlike other sql language

    • @AlbaRivasSalesforce
      @AlbaRivasSalesforce Před rokem +5

      1) Multitenancy and 2) Prevention of SOQL injection. There's another DML video being published next week :)