Answers for "string literal soql date format"

0

soql last week

Select * from case where WHERE CreatedDate = LAST_N_DAYS:30
Posted by: Guest on August-14-2020
0

string literal soql date format

//Date only:	
YYYY-MM-DD	1999-01-01

//Date, time, and time zone offset: YYYY-MM-DDThh:mm:ss+hh:mm
YYYY-MM-DDThh:mm:ss-hh:mm
YYYY-MM-DDThh:mm:ssZ
1999-01-01T23:01:01+01:00
1999-01-01T23:01:01-08:00
1999-01-01T23:01:01Z
Posted by: Guest on November-12-2020
0

soql last year

delete [SELECT Id FROM Opportunity WHERE CreatedDate = LAST_YEAR];
Posted by: Guest on August-14-2020

Browse Popular Code Answers by Language