Intervalos de fechas
Organiza tus páginas con colecciones
Guarda y categoriza el contenido según tus preferencias.
El lenguaje de consulta de Google Ads te permite especificar el período de las siguientes maneras:
Período personalizado
Puedes especificar fechas en formato ISO 8601 extendido (YYYY-MM-DD
) o básico (YYYYMMDD
), por ejemplo:
segments.date BETWEEN '2024-01-01' AND '2024-01-31'
segments.date >= '20241001' AND segments.date <= '20241031'
Período predefinido
A continuación, se incluye la lista de rangos de fechas predefinidos válidos:
Período |
Se generan informes para los siguientes casos: |
TODAY |
Solo por hoy. |
YESTERDAY |
Solo ayer. |
LAST_7_DAYS |
Los últimos 7 días, sin incluir el día de hoy. |
LAST_BUSINESS_WEEK
|
Semana laboral de 5 días, de lunes a viernes, de la semana laboral anterior. |
THIS_MONTH |
Todos los días del mes actual. |
LAST_MONTH |
Todos los días del mes anterior. |
LAST_14_DAYS |
Los últimos 14 días, sin incluir el día de hoy. |
LAST_30_DAYS |
Los últimos 30 días, sin incluir el día de hoy. |
THIS_WEEK_SUN_TODAY
|
Es el período entre el domingo anterior y el día actual. |
THIS_WEEK_MON_TODAY
|
Es el período entre el lunes anterior y el día actual. |
LAST_WEEK_SUN_SAT |
Período de 7 días que comienza con el domingo anterior. |
LAST_WEEK_MON_SUN |
Período de 7 días que comienza con el lunes anterior. |
Ejemplo:
segments.date DURING LAST_30_DAYS
Período predefinido
Algunos campos de fecha hacen referencia a un período predefinido, específicamente:
segments.week
segments.month
segments.quarter
Cuando filtres en función de estos segmentos, puedes usar el operador =
con la fecha que corresponde al primer día del período. Si especificas una fecha que no es el primer día de un período, se mostrará un error MISALIGNED_DATE_FOR_FILTER
.
Por ejemplo, para especificar el mes de mayo del año 2024, usa la siguiente condición, en la que se especifica el primer día de ese mes:
segments.month = '2024-05-01'
Salvo que se indique lo contrario, el contenido de esta página está sujeto a la licencia Atribución 4.0 de Creative Commons, y los ejemplos de código están sujetos a la licencia Apache 2.0. Para obtener más información, consulta las políticas del sitio de Google Developers. Java es una marca registrada de Oracle o sus afiliados.
Última actualización: 2025-08-27 (UTC)
[null,null,["Última actualización: 2025-08-27 (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'"]]