Tagged: apex

SOQL Queries in Apex 0

SOQL Queries in Apex

Salesforce developers rely heavily on SOQL queries in Apex to interact with database. Whether you are a complete newbie or seasoned coder, mastering SOQL is crucial for building efficient and scalable applications. Syntax of...

SOQL Query: Relationship Queries 0

SOQL Query: Relationship Queries

Relationship queries allow us to fetch records from multiple objects but, these objects must share some kind of relationship. Relationship queries, particularly SOQL query allow developers and admins to retrieve and analyze related data...

SOQL Query 0

SOQL Query

SOQL is a Salesforce Object Query Language that allows you to fetch data from Salesforce databases. Understanding of how to use SOQL effectively help to manage data effectively. What is SOQL? SOQL is a...

DML in Apex 0

DML in Apex

DML stands for Data Manipulation Language. Read and Write operation on salesforce database achieved by SOQL queries and DML Operations respectively.

Collections in Apex from My-Salesforce-Stories 0

Collections in Apex

There are three main types of collections List, Set, Map. These collections provide powerful tools for working with data in apex. They allows developers to efficiently manage and manipulate data within their application.

0

Primitive Data Types and Typecasting

It is a case-insensitive language to avoid confusion with SOQL and SOSL queries as they are case-insensitive. There are 12 primitive data types in apex. As follows: Blob, Boolean, Date, DateTime, Double, Decimal, Integer, ID, Object, Long, String, Time.

Difference between Apex and Java 0

Getting Started with Apex

Apex is strongly typed, object oriented programming language. It is a proprietary language developed by salesforce. It allows us to write code on force.com platform.