1년 중 특정 시기에 시간이 같더라도 시간대 이름을 엄밀히 구분해야 할 수 있습니다. 예를 들어 America/Los_Angeles는 일광 절약 시간 (DST) 동안 UTC-7:00과 같은 시간을 보고하지만, DST가 아닐 때는 UTC-8:00과 같은 시간을 보고합니다.
시간대를 지정하지 않으면 기본 시간대 값인 UTC가 사용됩니다.
time_zone_name 매개변수가 NULL로 평가되면 이 함수는 NULL을 반환합니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["이해하기 어려움","hardToUnderstand","thumb-down"],["잘못된 정보 또는 샘플 코드","incorrectInformationOrSampleCode","thumb-down"],["필요한 정보/샘플이 없음","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-07-30(UTC)"],[],[],null,["CURRENT_DATETIME\n================\n\nReturns the current date and time according to the specified or default timezone.\n\nSample usage\n------------\n\n`CURRENT_DATETIME()` \n\n`CURRENT_DATETIME(\"America/Los_Angeles\")`\n\nSyntax\n------\n\n`CURRENT_DATETIME([`\u003cvar translate=\"no\"\u003etime_zone_name\u003c/var\u003e`])`\n\n### Parameters\n\n- \u003cvar translate=\"no\"\u003etime_zone_name\u003c/var\u003e - Optional. A text field or an expression that represents the time zone.\n\n#### Time zone name\n\nA time zone name is a tz identifier from the\n[tz database](http://www.iana.org/time-zones).\n\nFor a less comprehensive but simpler reference, see the\n[List of tz database time zones](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)\non Wikipedia.\n\nExamples: \n\n America/Los_Angeles\n America/Argentina/Buenos_Aires\n Etc/UTC\n Pacific/Auckland\n\nWhen you use a time zone name, a space is required between the name and the rest\nof the timestamp: \n\n 2014-09-27 12:30:00.45 America/Los_Angeles\n\nNote that not all time zone names are interchangeable even if they report the\nsame time during a given part of the year. For example,\n`America/Los_Angeles` reports the same time as `UTC-7:00` during daylight\nsaving time (DST), but it reports the same time as `UTC-8:00` outside of DST.\n\nIf a time zone isn't specified, the default time zone value, UTC, is used.\n\nIf the \u003cvar translate=\"no\"\u003etime_zone_name\u003c/var\u003e parameter evaluates to `NULL`, this function returns `NULL`.\n\nReturn data type\n----------------\n\nDate \\& Time\n\nExamples\n--------\n\nNotes\n-----\n\nThis function is not available for [compatibility mode date types](/looker/docs/studio/dates-and-times#date_time_compatibility_mode).\n\nRelated resources\n-----------------\n\n- [Dates and times](/looker/docs/studio/dates-and-times)\n- [Calculated fields](/looker/docs/studio/about-calculated-fields)\n- [Looker Studio function list](/looker/docs/studio/function-list)"]]