নতুন Search Ads 360 Reporting API এখন উপলব্ধ। আসন্ন উন্নতি এবং রিলিজ সম্পর্কে আপ টু ডেট থাকতে
searchads-api-announcements Google গ্রুপে যোগ দিন।
তারিখ পরিসীমা
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
Search Ads 360 ক্যোয়ারী ল্যাঙ্গুয়েজ আপনাকে দুটি উপায়ে তারিখ পরিসীমা নির্দিষ্ট করতে দেয়:
কাস্টম তারিখ ব্যাপ্তি
আপনি ISO 8601 ( YYYY-MM-DD
) বিন্যাসে তারিখ উল্লেখ করতে পারেন:
segments.date BETWEEN '2019-01-01' AND '2019-01-31'
segments.date >= '2019-01-01' AND segments.date <= '2019-01-31'
সময়কাল
কিছু তারিখের ক্ষেত্র একটি পূর্বনির্ধারিত সময়ের উল্লেখ করে, বিশেষ করে:
-
segments.week
-
segments.month
-
segments.quarter
এই অংশগুলিতে ফিল্টার করার সময়, আপনি সময়কালের প্রথম দিন তারিখের সাথে =
অপারেটর ব্যবহার করতে পারেন। v9 থেকে শুরু করে, আপনি যদি এমন একটি তারিখ নির্দিষ্ট করেন যা পিরিয়ডের প্রথম দিন নয়, তাহলে একটি MISALIGNED_DATE_FOR_FILTER
ত্রুটি ফেরত দেওয়া হবে৷
উদাহরণস্বরূপ, 2021 সালের মে মাসটি নির্দিষ্ট করতে, আপনি সেই মাসের প্রথম দিনটি উল্লেখ করে নিম্নলিখিত শর্তটি ব্যবহার করবেন:
segments.month = '2021-05-01'
পূর্বনির্ধারিত তারিখ ব্যাপ্তি
বৈধ পূর্বনির্ধারিত তারিখ ব্যাপ্তির তালিকা নিম্নরূপ:
তারিখ পরিসীমা | এর জন্য প্রতিবেদন তৈরি করা হয়... |
---|
TODAY | আজ শুধু। |
YESTERDAY | শুধু গতকাল। |
LAST_7_DAYS | আজ সহ গত ৭ দিন নয়। |
LAST_BUSINESS_WEEK | আগের ব্যবসায়িক সপ্তাহের 5 দিনের ব্যবসায়িক সপ্তাহ, সোমবার থেকে শুক্রবার। |
THIS_MONTH | চলতি মাসের সব দিন। |
LAST_MONTH | আগের মাসের সব দিন। |
LAST_14_DAYS | আজ সহ গত ১৪ দিন নয়। |
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
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-08-29 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-08-29 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003eThe Search Ads 360 Query Language allows specifying date ranges using either custom dates or predefined date ranges.\u003c/p\u003e\n"],["\u003cp\u003eCustom date ranges can be defined using ISO 8601 format and operators like \u003ccode\u003eBETWEEN\u003c/code\u003e, \u003ccode\u003e>=\u003c/code\u003e, and \u003ccode\u003e<=\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eTime period segments such as week, month, and quarter require filtering with the first day of the period using the \u003ccode\u003e=\u003c/code\u003e operator.\u003c/p\u003e\n"],["\u003cp\u003ePredefined date ranges offer shortcuts for common periods like \u003ccode\u003eTODAY\u003c/code\u003e, \u003ccode\u003eLAST_7_DAYS\u003c/code\u003e, \u003ccode\u003eLAST_MONTH\u003c/code\u003e, and others, simplifying query construction.\u003c/p\u003e\n"],["\u003cp\u003eSpecifying a date that is not the first day of a period for segments like \u003ccode\u003esegments.month\u003c/code\u003e will result in a \u003ccode\u003eMISALIGNED_DATE_FOR_FILTER\u003c/code\u003e error.\u003c/p\u003e\n"]]],["The Search Ads 360 Query Language uses custom or predefined date ranges. Custom ranges utilize ISO 8601 format (YYYY-MM-DD) for specific dates (e.g., `segments.date BETWEEN '2019-01-01' AND '2019-01-31'`). For segments like `week`, `month`, or `quarter`, filters must use the first day of the period. Predefined ranges, such as `TODAY`, `LAST_7_DAYS`, or `LAST_MONTH`, offer shortcuts (e.g., `segments.date DURING LAST_30_DAYS`).\n"],null,["# Date Ranges\n\nThe Search Ads 360 Query Language lets you specify the date range in two ways:\n\n- custom date range\n\n- predefined date range\n\nCustom date range\n-----------------\n\nYou can specify dates in ISO 8601(`YYYY-MM-DD`) format: \n\n segments.date BETWEEN '2019-01-01' AND '2019-01-31'\n\n segments.date \u003e= '2019-01-01' AND segments.date \u003c= '2019-01-31'\n\n### Time periods\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. Starting in v9, if you specify a date\nthat is not the first day of a period, a `MISALIGNED_DATE_FOR_FILTER` error is\nreturned.\n\nFor example, to specify the month of May in the year 2021, you would use the\nfollowing condition, specifying the first day of that month: \n\n segments.month = '2021-05-01'\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"]]