Salesforce Developer Tutorial - The Complete Guide to SOQL and SOSL in 2022!

Поділитися
Вставка
  • Опубліковано 9 лип 2024

КОМЕНТАРІ • 16

  • @neilhohmann10
    @neilhohmann10 Рік тому +2

    Great video! Just a quick comment in reference to something you said at 45:35 in the video. In fact, the ORDER BY clause _will_ order the records by a field that is _not_ selected. For instance, the following SOQL query will organize the returned rows by last name even though LastName is not part of the SELECT clause: *SELECT Id, Name FROM Contact ORDER BY LastName*

  • @neilhohmann10
    @neilhohmann10 Рік тому

    Another helpful SOQL function is FORMAT(). If you wrap a currency, number, or date,/time field with it, it will make those fields more reader-friendly. For instance, it will add the currency denomination ($) and delimiters (eg, 45000000 >>> $45,000,000): *SELECT Id, Name, FORMAT(Amount) FROM Opportunity*. You can also use it with aggregate queries: *SELECT FORMAT(MAX(Amount)) FROM Opportunity*.

  • @hiovanycubillosgomez5901
    @hiovanycubillosgomez5901 Рік тому

    Cool video, thank you for explaining the difference between SAQL and SOQL.

  • @starman9000
    @starman9000 5 місяців тому +1

    Excellent content, i loved it. Thank you! please do cover more on LWC stuff!

  • @m.sali-art5060
    @m.sali-art5060 Рік тому

    Thank you this is helpful !

  • @Hiturion
    @Hiturion 6 місяців тому

    Great content. Would love to learn more about the Async queries :).

  • @KendellWyattMMA
    @KendellWyattMMA Рік тому

    Thanks for providing this! Incredibly helpful content. Also, you kind of sound like Michael J Fox in Back to the Future.

  • @manninggrinnan621
    @manninggrinnan621 Рік тому +1

    Thanks, it's impressive that you can maintain for so long. I had to digest it in three sessions!

    • @CodingWithTheForce
      @CodingWithTheForce  Рік тому +5

      Lol, well I write it all out ahead of time (the outline of the video, not the exact words I say) and then I actually typically record these long videos over multiple days, I just edit it all together and make sure I use the same shirt when I record lol, that way it all seems more seamless to the viewers.

  • @benimfavorilerim
    @benimfavorilerim Рік тому

    Thanks.. It is really a reference tutorial. ::: + :)

  • @fatihgulsun5
    @fatihgulsun5 Рік тому

    Hello you are great and your lessons great too thank you for all of the hardwork.Even when my query is correct, it's underlined in red, and it's driving me crazy. What can we do about this issue? I bought Intellij with your advice. But I guess the system there is not the same as in the developer console. I can't reach some of the things that I can reach in developer consel, I guess because I don't know how to use intejij.

  • @gauravjain6159
    @gauravjain6159 Рік тому

    Thank you for this great video. One comment about lookup SOQL query from parent to child. If its custom object then Child Relationship Name which is available in UI , has to be appended with __r when you query, right?

  • @funklion
    @funklion Рік тому +1

    One thing I was hoping to see but didn't: how to work with the outputs of sub queries returning more than one object in apex. You showed how a regular query or one that uses parent fields can be put right into a list, but I didn't see anything about the more complex types of results in apex.

    • @funklion
      @funklion Рік тому

      Edit: I do see the SOSL List part now not sure how I missed that before. Cool!

  • @srikanthreddyboreddy8524
    @srikanthreddyboreddy8524 Рік тому +1

    please guide me best salesforce text in amazon

    • @CodingWithTheForce
      @CodingWithTheForce  Рік тому +1

      They are in the comments in all my videos, but my favorite for beginners will always be Advanced Apex by Dan Appleman. It is an excellent book and really helped me get started out on the right foot many years ago.