तारीख सीमाएं
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
Google Ads क्वेरी लैंग्वेज की मदद से, तारीख की सीमा को इन तरीकों से तय किया जा सकता है:
कस्टम तारीख सीमा
तारीखों को ISO 8601 के एक्सटेंडेड (YYYY-MM-DD
) या बुनियादी (YYYYMMDD
) फ़ॉर्मैट में दिया जा सकता है. उदाहरण के लिए:
segments.date BETWEEN '2024-01-01' AND '2024-01-31'
segments.date >= '20241001' AND segments.date <= '20241031'
तारीख की पहले से तय सीमा
तारीख की पहले से तय मान्य सीमाओं की सूची यहां दी गई है:
तारीख की सीमा |
रिपोर्ट इनके लिए जनरेट की जाती हैं... |
TODAY |
सिर्फ़ आज के लिए. |
YESTERDAY |
सिर्फ़ कल के लिए. |
LAST_7_DAYS |
पिछले सात दिन, जिसमें आज का दिन शामिल नहीं है. |
LAST_BUSINESS_WEEK
|
पिछले कारोबारी हफ़्ते के सोमवार से शुक्रवार तक के पांच कामकाजी दिन. |
THIS_MONTH |
मौजूदा महीने के सभी दिन. |
LAST_MONTH |
पिछले महीने के सभी दिन. |
LAST_14_DAYS |
आज को छोड़कर, पिछले 14 दिन. |
LAST_30_DAYS |
पिछले 30 दिन, जिसमें आज का डेटा शामिल नहीं है. |
THIS_WEEK_SUN_TODAY
|
पिछले रविवार से लेकर मौजूदा दिन के बीच की अवधि. |
THIS_WEEK_MON_TODAY
|
पिछले सोमवार से लेकर मौजूदा दिन के बीच की अवधि. |
LAST_WEEK_SUN_SAT |
पिछले रविवार से शुरू होने वाली सात दिनों की अवधि. |
LAST_WEEK_MON_SUN |
पिछले सोमवार से शुरू होने वाला सात दिन का पीरियड. |
उदाहरण:
segments.date DURING LAST_30_DAYS
पहले से तय की गई समयावधि
तारीख वाले कुछ फ़ील्ड, पहले से तय की गई समयावधि के बारे में बताते हैं. जैसे:
segments.week
segments.month
segments.quarter
इन सेगमेंट को फ़िल्टर करते समय, =
ऑपरेटर का इस्तेमाल उस तारीख के साथ किया जा सकता है जो समयावधि का पहला दिन है. अगर आपने कोई ऐसी तारीख दी है जो किसी अवधि का पहला दिन नहीं है, तो MISALIGNED_DATE_FOR_FILTER
गड़बड़ी का मैसेज दिखता है.
उदाहरण के लिए, साल 2024 का मई महीना तय करने के लिए, इस शर्त का इस्तेमाल करें. इसमें उस महीने के पहले दिन की जानकारी दी गई है:
segments.month = '2024-05-01'
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-09-05 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-09-05 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eGoogle Ads Query Language allows you to specify date ranges using custom dates, predefined date ranges like \u003ccode\u003eTODAY\u003c/code\u003e or \u003ccode\u003eLAST_30_DAYS\u003c/code\u003e, and predefined time periods for week, month, or quarter.\u003c/p\u003e\n"],["\u003cp\u003eCustom date ranges can be defined using ISO 8601 format, either extended (\u003ccode\u003eYYYY-MM-DD\u003c/code\u003e) or basic (\u003ccode\u003eYYYYMMDD\u003c/code\u003e), within a \u003ccode\u003eBETWEEN\u003c/code\u003e or \u003ccode\u003e>=\u003c/code\u003e and \u003ccode\u003e<=\u003c/code\u003e clause.\u003c/p\u003e\n"],["\u003cp\u003ePredefined date ranges provide shortcuts for common timeframes, such as \u003ccode\u003eLAST_BUSINESS_WEEK\u003c/code\u003e or \u003ccode\u003eTHIS_MONTH\u003c/code\u003e, simplifying date selection in queries.\u003c/p\u003e\n"],["\u003cp\u003eWhen filtering by predefined time periods (week, month, quarter), use the \u003ccode\u003e=\u003c/code\u003e operator with the first day of the period to avoid errors.\u003c/p\u003e\n"]]],[],null,["# Date Ranges\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\nThe Google Ads Query Language lets you specify the date range in these ways:\n\n- [Custom date range](#custom)\n- [Predefined date range](#date-range)\n- [Predefined time period](#time-period)\n\nCustom date range\n-----------------\n\nYou can specify dates in [ISO 8601](//en.wikipedia.org/wiki/ISO_8601) extended\n(`YYYY-MM-DD`) or basic (`YYYYMMDD`) format, for example: \n\n segments.date BETWEEN '2024-01-01' AND '2024-01-31'\n\n segments.date \u003e= '20241001' AND segments.date \u003c= '20241031'\n\nPredefined date range\n---------------------\n\nThe list of valid predefined date ranges is as follows:\n\n| Date range | Reports are generated for... |\n|-----------------------|--------------------------------------------------------------------------------|\n| `TODAY` | Today only. |\n| `YESTERDAY` | Yesterday only. |\n| `LAST_7_DAYS` | The last 7 days not including today. |\n| `LAST_BUSINESS_WEEK` | The 5 day business week, Monday through Friday, of the previous business week. |\n| `THIS_MONTH` | All days in the current month. |\n| `LAST_MONTH` | All days in the previous month. |\n| `LAST_14_DAYS` | The last 14 days not including today. |\n| `LAST_30_DAYS` | The last 30 days not including today. |\n| `THIS_WEEK_SUN_TODAY` | The period between the previous Sunday and the current day. |\n| `THIS_WEEK_MON_TODAY` | The period between the previous Monday and the current day. |\n| `LAST_WEEK_SUN_SAT` | The 7-day period starting with the previous Sunday. |\n| `LAST_WEEK_MON_SUN` | The 7-day period starting with the previous Monday. |\n\nExample: \n\n segments.date DURING LAST_30_DAYS\n\nPredefined time period\n----------------------\n\nSome date fields refer to a predefined period of time, specifically:\n\n- `segments.week`\n- `segments.month`\n- `segments.quarter`\n\nWhen filtering on these segments, you can use the `=` operator with the date\nthat is the first day of the time period. If you specify a date that isn't the\nfirst day of a period, a `MISALIGNED_DATE_FOR_FILTER` error is returned.\n\nFor example, to specify the month of May in the year 2024, use the\nfollowing condition, specifying the first day of that month: \n\n segments.month = '2024-05-01'"]]