-
SOQL) WHERE ์กฐ๊ฑด์ ์์์ ๋ ์ง ์ฌ์ฉ๊ฐ๋ฐ/Salesforce 2023. 11. 13. 21:00
1) ๋ ์ง ํ์์ ํตํ ์กฐ๊ฑด์ ์ฌ์ฉ
SELECT Id FROM Account WHERE CreatedDate > 2005-10-08T01:02:03Z
ํน์ ํ ๋ ์ง๋ฅผ ๊ธฐ๋ฐํด ์ฟผ๋ฆฌ ๊ฒฐ๊ณผ๋ฅผ ํํฐํ๊ธฐ ์ํด์, ๋ ์ง ํ์์ ์ฌ์ฉํ ๊ฐ์ ์ธํ ํ๋ฉด ๋๋ค. ์๋์ ํ ์ด๋ธ์์๋ SOQL ์ฟผ๋ฆฌ์ WHERE ์กฐ๊ฑด ์ ์์ ์ฌ์ฉํ ์ ์๋ date์ dateTime ํ์๋ค์ ๋ณด์ฌ์ค๋ค.
date YYYY-MM-DD 1999-01-01 dateTime - 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
์ธ์ผ์ฆํฌ์ค์์๋ UTC(Coordinated Universal Time) ํ์ ์ผ๋ก dateTime์ ์ ์ฅํ๋ค. ๋ค๋ฅธ ํ์์กด์์์ dateTime์ ์ ๊ณตํ๊ธฐ ์ํด์๋ time zone offset์ ์ด์ฉํ ์ ์๋ค.
2) ๋ฌธ์ ํํ์ผ๋ก ์กฐ๊ฑด์ ์ฌ์ฉํ๊ธฐ
๋ ์ง์ ์๋์ ์ธ ๋ฒ์์ ๋ํด ์ฟผ๋ฆฌ ๊ฒฐ๊ณผ ์กฐ๊ฑด์ ๋ง๋ค ๋, ๋ฌธ์๋ก์์ ํน์ ํํ์ ์ฌ์ฉํ ์ ์๋ค. ์๋ฅผ ๋ค์ด, 3๊ฐ์ ๋ด์ ํน์ ๊ฒฐ๊ณผ ๊ฐ์ ๊ตฌํด์ผ ํ๊ฑฐ๋ ๋ด๋ ํ๊ณ๋ ๋ ์ดํ์ ๋ฐ๋๋ผ์ธ์ ์๋ ๊ฒฐ๊ณผ ๊ฐ์ ํ์๋ก ํ ๋์ ๊ฐ์ ๊ฒฝ์ฐ์ด๋ค. ์ด๋ฌํ ํํ๋ค์ ํ์ฌ๋ฅผ ๊ธฐ์ค์ผ๋ก ํ ์๋์ ์ธ ๋ฒ์๋ฅผ ๋ํ๋ธ๋ค.
ํด๋น ํํ๋ค์ =, >, < ๋ฑ๊ณผ ๊ฐ์ ๋น๊ต ์์์๋ค์ ์ฌ์ฉํ๋ค. ์๋์ ํ ์ด๋ธ์ ํตํด ํ์ธํด๋ณด์.
YESTERDAY Starts at 12:00:00 AM on the day before the current day and continues for 24 hours. SELECT Id FROM Account WHERE CreatedDate = YESTERDAY TODAY Starts at 12:00:00 AM on the current day and continues for 24 hours. SELECT Id FROM Account WHERE CreatedDate > TODAY TOMORROW Starts at 12:00:00 AM. on the day after the current day and continues for 24 hours. SELECT Id FROM Opportunity WHERE CloseDate = TOMORROW LAST_WEEK Starts at 12:00:00 AM on the first day of the week before the current week and continues for seven days. SELECT Id FROM Account WHERE CreatedDate > LAST_WEEK THIS_WEEK Starts at 12:00:00 AM on the first day of the current week and continues for seven days. SELECT Id FROM Account WHERE CreatedDate < THIS_WEEK NEXT_WEEK Starts at 12:00:00 AM on the first day of the week after the current week and continues for seven days. SELECT Id FROM Opportunity WHERE CloseDate = NEXT_WEEK LAST_MONTH Starts at 12:00:00 AM on the first day of the month before the current month and continues for all the days of that month. SELECT Id FROM Opportunity WHERE CloseDate > LAST_MONTH THIS_MONTH Starts at 12:00:00 AM on the first day of the current month and continues for all the days of that month. SELECT Id FROM Account WHERE CreatedDate < THIS_MONTH NEXT_MONTH Starts at 12:00:00 AM on the first day of the month after the current month and continues for all the days of that month. SELECT Id FROM Opportunity WHERE CloseDate = NEXT_MONTH LAST_90_DAYS Starts at 12:00:00 AM 90 days before the current day and continues up to the current second. (The range includes today. Using this date value includes records from 91 days ago up to the current day.) SELECT Id FROM Account WHERE CreatedDate = LAST_90_DAYS NEXT_90_DAYS Starts at 12:00:00 AM on the day that the report is run and continues for 90 days. (The range includes today.) SELECT Id FROM Opportunity WHERE CloseDate > NEXT_90_DAYS LAST_N_DAYS:n Starts at 12:00:00 AM n days before the current day and continues up to the current second. (The range includes today. Using this date value includes records from n + 1 days ago up to the current day.) In standard filters, n can be 7, 30, 60, 90, or 120. SELECT Id FROM Account WHERE CreatedDate = LAST_N_DAYS:365 NEXT_N_DAYS:n For standard date filters, starts at 12:00:00 AM on the day that the report is run and continues for n days. (The range includes today.) In standard filters, n can be 7, 30, 60, 90, or 120.For custom field filters, starts at 12:00:00 AM on the next day and continues for the next n days. (The range doesn’t include today.) SELECT Id FROM Opportunity WHERE CloseDate > NEXT_N_DAYS:15 N_DAYS_AGO:n Starts at 12:00:00 AM on the day n days before the current day and continues for 24 hours. (The range doesn’t include today.) SELECT Id FROM Opportunity WHERE CloseDate = N_DAYS_AGO:25 NEXT_N_WEEKS:n Starts at 12:00:00 AM on the first day of the week after the current week and continues for n times seven days. SELECT Id FROM Opportunity WHERE CloseDate > NEXT_N_WEEKS:4 LAST_N_WEEKS:n Starts at 12:00:00 AM on the first day of the week that started n weeks before the current week, and continues up to 11:59 PM on the last day of the week before the current week. SELECT Id FROM Account WHERE CreatedDate = LAST_N_WEEKS:52 N_WEEKS_AGO:n Starts at 12:00:00 AM on the first day of the week that started n weeks before the start of the current week and continues for seven days. SELECT Id FROM Opportunity WHERE CloseDate = N_WEEKS_AGO:3 NEXT_N_MONTHS:n Starts at 12:00:00 AM on the first day of the month after the current month and continues until the end of the nth month. SELECT Id FROM Opportunity WHERE CloseDate > NEXT_N_MONTHS:2 LAST_N_MONTHS:n Starts at 12:00:00 AM on the first day of the month that started n months before the current month and continues up to 11:59 PM on the last day of the month before the current month. SELECT Id FROM Account WHERE CreatedDate = LAST_N_MONTHS:12 N_MONTHS_AGO:n Starts at 12:00:00 AM on the first day of the month that started n months before the start of the current month and continues for all the days of that month. SELECT Id FROM Opportunity WHERE CloseDate = N_MONTHS_AGO:6 THIS_QUARTER Starts at 12:00:00 AM on the first day of the current calendar quarter and continues to the end of the quarter. SELECT Id FROM Account WHERE CreatedDate = THIS_QUARTER LAST_QUARTER Starts at 12:00:00 AM on the first day of the calendar quarter before the current calendar quarter and continues to the end of that quarter. SELECT Id FROM Account WHERE CreatedDate = LAST_QUARTER NEXT_QUARTER Starts at 12:00:00 AM on the first day of the calendar quarter after the current calendar quarter and continues to the end of that quarter. SELECT Id FROM Account WHERE CreatedDate < NEXT_QUARTER NEXT_N_QUARTERS:n Starts at 12:00:00 AM on the first day of the calendar quarter after the current quarter and continues to the end of the calendar quarter n quarters in the future. (The range doesn’t include the current quarter.) SELECT Id FROM Account WHERE CreatedDate < NEXT_N_QUARTERS:2 LAST_N_QUARTERS:n Starts at 12:00:00 AM on the first day of the calendar quarter n quarters ago and continues to the end of the calendar quarter before the current quarter. (The range doesn’t include the current quarter.) SELECT Id FROM Account WHERE CreatedDate = LAST_N_QUARTERS:2 N_QUARTERS_AGO:n Starts at 12:00:00 AM on the first day of the calendar quarter n quarters before the current calendar quarter and continues to the end of that quarter. SELECT Id FROM Opportunity WHERE CloseDate = N_QUARTERS_AGO:3 THIS_YEAR Starts at 12:00:00 AM on January 1 of the current year and continues through the end of December 31 of the current year. SELECT Id FROM Opportunity WHERE CloseDate = THIS_YEAR LAST_YEAR Starts at 12:00:00 AM on January 1 of the year before the current year and continues through the end of December 31 of that year. SELECT Id FROM Opportunity WHERE CloseDate > LAST_YEAR NEXT_YEAR Starts at 12:00:00 AM on January 1 of the year after the current year and continues through the end of December 31 of that year. SELECT Id FROM Opportunity WHERE CloseDate < NEXT_YEAR NEXT_N_YEARS:n Starts at 12:00:00 AM on January 1 of the year after the current year and continues through the end of December 31 of the nth year. SELECT Id FROM Opportunity WHERE CloseDate = NEXT_N_YEARS:5 LAST_N_YEARS:n Starts at 12:00:00 am on January 1, n+1 years ago. The range ends on December 31 of the year before the current year. SELECT Id FROM Opportunity WHERE CloseDate = LAST_N_YEARS:5 N_YEARS_AGO:n Starts at 12:00:00 AM on January 1 of the calendar year n years before the current calendar year and continues through the end of December 31 of that year. SELECT Id FROM Opportunity WHERE CloseDate = N_YEARS_AGO:2 THIS_FISCAL_QUARTER Starts at 12:00:00 AM on the first day of the current fiscal quarter and continues through the end of the last day of the current fiscal quarter. The fiscal quarter is defined on the Fiscal Year page in Setup. SELECT Id FROM Account WHERE CreatedDate = THIS_FISCAL_QUARTER LAST_FISCAL_QUARTER Starts at 12:00:00 AM on the first day of the fiscal quarter before the current fiscal quarter and continues through the last day of that fiscal quarter. The fiscal quarter is defined on the Fiscal Year page in Setup. SELECT Id FROM Account WHERE CreatedDate > LAST_FISCAL_QUARTER NEXT_FISCAL_QUARTER Starts at 12:00:00 AM on the first day of the fiscal quarter after the current fiscal quarter and continues through the last day of that fiscal quarter. (The range doesn’t include the current quarter.) The fiscal quarter is defined on the Fiscal Year page in Setup. SELECT Id FROM Account WHERE CreatedDate < NEXT_FISCAL_QUARTER NEXT_N_FISCAL_โQUARTERS:n Starts at 12:00:00 AM on the first day of the fiscal quarter after the current fiscal quarter and continues through the end of the last day of the nth fiscal quarter. (The range doesn’t include the current fiscal quarter.) The fiscal quarter is defined on the Fiscal Year page in Setup. SELECT Id FROM Account WHERE CreatedDate = NEXT_N_FISCAL_QUARTERS:6 LAST_N_FISCAL_โQUARTERS:n Starts at 12:00:00 AM on the first day of the fiscal quarter n fiscal quarters ago and continues through the end of the last day of the previous fiscal quarter. (The range doesn’t include the current fiscal quarter.) The fiscal quarter is defined on the Fiscal Year page in Setup. SELECT Id FROM Account WHERE CreatedDate > LAST_N_FISCAL_QUARTERS:6 N_FISCAL_QUARTERS_AGO:n Starts at 12:00:00 AM on the first day of the fiscal quarter n fiscal quarters before the current fiscal quarter and continues through the end of the last day of that fiscal quarter. SELECT Id FROM Opportunity WHERE CloseDate = N_FISCAL_QUARTERS_AGO:6 THIS_FISCAL_YEAR Starts at 12:00:00 AM on the first day of the current fiscal year and continues through the end of the last day of the fiscal year. The fiscal quarter is defined on the Fiscal Year page in Setup. SELECT Id FROM Opportunity WHERE CloseDate = THIS_FISCAL_YEAR LAST_FISCAL_YEAR Starts at 12:00:00 AM on the first day of the fiscal year before the current fiscal year and continues through the end of the last day of that fiscal year. The fiscal quarter is defined on the Fiscal Year page in Setup. SELECT Id FROM Opportunity WHERE CloseDate > LAST_FISCAL_YEAR NEXT_FISCAL_YEAR Starts at 12:00:00 AM on the first day of the fiscal year after the current fiscal year and continues through the end of the last day of that fiscal year. The fiscal quarter is defined on the Fiscal Year page in Setup. SELECT Id FROM Opportunity WHERE CloseDate < NEXT_FISCAL_YEAR NEXT_N_FISCAL_โYEARS:n Starts at 12:00:00 AM on the first day of the fiscal year after the current fiscal year and continues through the end of the last day of the nth fiscal year. (The range doesn’t include the current fiscal year.) The fiscal quarter is defined on the Fiscal Year page in Setup. SELECT Id FROM Opportunity WHERE CloseDate = NEXT_N_FISCAL_YEARS:3 LAST_N_FISCAL_โYEARS:n Starts at 12:00:00 AM on the first day of the fiscal year n fiscal years ago and continues through the end of the last day of the fiscal year before the current fiscal year. (The range doesn’t include the current fiscal year.) The fiscal quarter is defined on the Fiscal Year page in Setup. SELECT Id FROM Opportunity WHERE CloseDate = LAST_N_FISCAL_YEARS:3 N_FISCAL_YEARS_AGO:n Starts at 12:00:00 AM on the first day of the fiscal year n fiscal years ago and continues through the end of the last day of that fiscal year. SELECT Id FROM Opportunity WHERE CloseDate = N_FISCAL_YEARS_AGO:3 FISCAL ํํ์ ์ธ ๋๋, ์ธ์ผ์ฆํฌ์ค์์ ์ปค์คํ ์ ๋ฐ๋์ ๋จผ์ ํด์ผํ๋ค.- If the UNIT in LAST_N_UNIT:n is any unit except DAYS, the date literal doesn't include the current day. So, for example, LAST_N_WEEKS:1 doesn't include today.
- The two date literals LAST_N_DAYS:n and LAST_90_DAYS do include the current day. So, for example, LAST_N_DAYS:1 includes yesterday and today. And LAST_90_DAYS includes 91 days, not just 90.
3) ์ ํจํ ๋ ์ง ๋ฒ์
๋ ์ง๋ ํน์ ๋ฒ์ ๋ด์์๋ง ์ ํจํ๋ค.
1700๋ 1์ 1์ผ ๋ถํฐ 4000๋ 12์ 31์ผ ๊น์ง ๊ฐ๋ฅํ๋ค. ํ์์กด์ ๋ฐ๋ผ ๋ค๋ฅธ๋ฐ, ์๋ฅผ ๋ค์ด the Pacific time zone ๊ฐ์ ๊ฒฝ์ฐ์๋, 1699-12-31T16:00:00 (4:00 PM on December 31, 1699) ๋ก ์๊ฐ ํ๋ฉด ๋๋ค.
'๊ฐ๋ฐ > Salesforce' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
Apex Error) List has no rows for assignment to SObject (0) 2023.11.13 ๋ก๊ทธ์ธํ ์ฌ์ฉ์ ์ธ์ด ๋ณ๊ฒฝํ๊ธฐ (0) 2023.11.13 Marketing User ์ต์ (0) 2023.11.13