{"id":1530,"date":"2018-07-21T03:03:34","date_gmt":"2018-07-21T10:03:34","guid":{"rendered":"https:\/\/sqltutorial.org\/?page_id=1530"},"modified":"2025-01-20T08:43:08","modified_gmt":"2025-01-20T15:43:08","slug":"sql-current-date","status":"publish","type":"page","link":"https:\/\/www.sqltutorial.org\/sql-date-functions\/sql-current-date\/","title":{"rendered":"SQL CURRENT_DATE Function"},"content":{"rendered":"\n<p><strong>Summary<\/strong>: in this tutorial, you will learn how to use the SQL <code>CURRENT_DATE<\/code> function to get the current date.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='introduction-to-the-sql-current_date-function'>Introduction to the SQL CURRENT_DATE function <a href=\"#introduction-to-the-sql-current_date-function\" class=\"anchor\" id=\"introduction-to-the-sql-current_date-function\" title=\"Anchor for Introduction to the SQL CURRENT_DATE function\">#<\/a><\/h2>\n\n\n\n<p>The <code>CURRENT_DATE<\/code> function returns the current date of the machine where the database server is running.<\/p>\n\n\n\n<p>Here&#8217;s the syntax of the <code>CURRENT_DATE<\/code> function:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">CURRENT_DATE<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p class=\"note\">Note that the <code>CURRENT_DATE<\/code> function does not require parentheses because it is a reversed word in SQL.<\/p>\n\n\n\n<p>The <code>CURRENT_DATE<\/code> function returns a value of <code>DATE<\/code> type without the time component.<\/p>\n\n\n\n<p>In practice, you&#8217;ll find the <code>CURRENT_DATE<\/code> function helpful for comparing and filtering dates with the current date.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='sql-current_date-function-examples'>SQL CURRENT_DATE function examples <a href=\"#sql-current_date-function-examples\" class=\"anchor\" id=\"sql-current_date-function-examples\" title=\"Anchor for SQL CURRENT_DATE function examples\">#<\/a><\/h2>\n\n\n\n<p>Let&#8217;s take some examples of using the <code>CURRENT_DATE<\/code> function.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id='retrieving-the-current-date'>Retrieving the current date <a href=\"#retrieving-the-current-date\" class=\"anchor\" id=\"retrieving-the-current-date\" title=\"Anchor for Retrieving the current date\">#<\/a><\/h3>\n\n\n\n<p>The following statement uses the <code>CURRENT_DATE<\/code> function to retrieve the current date:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">SELECT<\/span> <span class=\"hljs-keyword\">CURRENT_DATE<\/span> <span class=\"hljs-keyword\">AS<\/span> today;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p><a href=\"https:\/\/www.sqltutorial.org\/playground\/?q=U0VMRUNUIENVUlJFTlRfREFURSBBUyB0b2RheTs%3D\" target=\"_blank\" rel=\"noreferrer noopener\">Try it<\/a><\/p>\n\n\n\n<p>Here&#8217;s the output when we run the statement on <code>January 20, 2025<\/code>:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">   today\n<span class=\"hljs-comment\">------------<\/span>\n 2025-01-20<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>The output indicates the format of the date is <code>YYYY-MM-DD<\/code>, which is ISO standard format for a date.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id='using-the-current_date-function-as-the-default-value'>Using the CURRENT_DATE function as the default value <a href=\"#using-the-current_date-function-as-the-default-value\" class=\"anchor\" id=\"using-the-current_date-function-as-the-default-value\" title=\"Anchor for Using the CURRENT_DATE function as the default value\">#<\/a><\/h3>\n\n\n\n<p>When <a href=\"https:\/\/www.sqltutorial.org\/sql-create-table\/\">creating a new table<\/a> or <a href=\"https:\/\/www.sqltutorial.org\/sql-add-column\/\">adding a column<\/a> to an existing table, you can use the <code>CURRENT_DATE<\/code> function as a default value for a column. For example:<\/p>\n\n\n\n<p>First, <a href=\"https:\/\/www.sqltutorial.org\/sql-create-table\/\">create a new table<\/a> called <code>salary_changes<\/code> that uses the <code>CURRENT_DATE<\/code> function as a default value for a column:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">CREATE<\/span> <span class=\"hljs-keyword\">TABLE<\/span> salary_changes (\n  employee_id <span class=\"hljs-built_in\">INT<\/span> <span class=\"hljs-keyword\">NOT<\/span> <span class=\"hljs-literal\">NULL<\/span>,\n  changed_date <span class=\"hljs-built_in\">DATE<\/span> <span class=\"hljs-keyword\">NOT<\/span> <span class=\"hljs-literal\">NULL<\/span> <span class=\"hljs-keyword\">DEFAULT<\/span> <span class=\"hljs-keyword\">CURRENT_DATE<\/span>,\n  salary <span class=\"hljs-built_in\">DEC<\/span> <span class=\"hljs-keyword\">NOT<\/span> <span class=\"hljs-literal\">NULL<\/span>,\n  PRIMARY <span class=\"hljs-keyword\">KEY<\/span> (employee_id, changed_date)\n);<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p><a href=\"https:\/\/www.sqltutorial.org\/playground\/?q=Q1JFQVRFIFRBQkxFIHNhbGFyeV9jaGFuZ2VzICggZW1wbG95ZWVfaWQgSU5UIE5PVCBOVUxMLCBjaGFuZ2VkX2RhdGUgREFURSBOT1QgTlVMTCBERUZBVUxUIENVUlJFTlRfREFURSwgc2FsYXJ5IERFQyBOT1QgTlVMTCwgUFJJTUFSWSBLRVkgKGVtcGxveWVlX2lkLCBjaGFuZ2VkX2RhdGUpICk7\" target=\"_blank\" rel=\"noreferrer noopener\">Try it<\/a><\/p>\n\n\n\n<p>Second, <a href=\"https:\/\/www.sqltutorial.org\/sql-insert\/\">insert a new row<\/a> into the <code>salary_changes<\/code> table:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-5\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">INSERT<\/span> <span class=\"hljs-keyword\">INTO<\/span>\n  salary_changes (employee_id, salary)\n<span class=\"hljs-keyword\">VALUES<\/span>\n  (<span class=\"hljs-number\">100<\/span>, <span class=\"hljs-number\">25000<\/span>);<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-5\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p><a href=\"https:\/\/www.sqltutorial.org\/playground\/?q=SU5TRVJUIElOVE8gc2FsYXJ5X2NoYW5nZXMgKGVtcGxveWVlX2lkLCBzYWxhcnkpIFZBTFVFUyAoMTAwLCAyNTAwMCk7\" target=\"_blank\" rel=\"noreferrer noopener\">Try it<\/a><\/p>\n\n\n\n<p>When you insert a new row without providing a value for the <code>changed_date<\/code> column, the database system uses the current date as the value for the column.<\/p>\n\n\n\n<p>Third, <a href=\"https:\/\/www.sqltutorial.org\/sql-select\/\">retrieve data<\/a> from the <code>salary_changes<\/code> table:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-6\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">SELECT<\/span> * <span class=\"hljs-keyword\">FROM<\/span> salary_changes;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-6\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p><a href=\"https:\/\/www.sqltutorial.org\/playground\/?q=U0VMRUNUICogRlJPTSBzYWxhcnlfY2hhbmdlczs%3D\" target=\"_blank\" rel=\"noreferrer noopener\">Try it<\/a><\/p>\n\n\n\n<p>Here&#8217;s the output when we run the insert statement on <code>January 20, 2025<\/code>:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-7\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"> employee_id | changed_date | salary\n<span class=\"hljs-comment\">-------------+--------------+--------<\/span>\n         100 | 2025-01-20   |  25000<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-7\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<h3 class=\"wp-block-heading\" id='comparing-with-other-dates'>Comparing with other dates <a href=\"#comparing-with-other-dates\" class=\"anchor\" id=\"comparing-with-other-dates\" title=\"Anchor for Comparing with other dates\">#<\/a><\/h3>\n\n\n\n<p>You can use the <code>CURRENT_DATE<\/code> function to compare with other dates. <\/p>\n\n\n\n<p>For example, the following statement finds the employees who have salary changes before today:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-8\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">SELECT<\/span>\n  first_name,\n  last_name,\n  s.salary new_salary\n<span class=\"hljs-keyword\">FROM<\/span>\n  salary_changes s\n  <span class=\"hljs-keyword\">INNER<\/span> <span class=\"hljs-keyword\">JOIN<\/span> employees e <span class=\"hljs-keyword\">ON<\/span> e.employee_id = s.employee_id\n<span class=\"hljs-keyword\">WHERE<\/span>\n  changed_date &lt; <span class=\"hljs-keyword\">CURRENT_DATE<\/span>;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-8\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p><a href=\"https:\/\/www.sqltutorial.org\/playground\/?q=U0VMRUNUIGZpcnN0X25hbWUsIGxhc3RfbmFtZSwgcy5zYWxhcnkgbmV3X3NhbGFyeSBGUk9NIHNhbGFyeV9jaGFuZ2VzIHMgSU5ORVIgSk9JTiBlbXBsb3llZXMgZSBPTiBlLmVtcGxveWVlX2lkID0gcy5lbXBsb3llZV9pZCBXSEVSRSBjaGFuZ2VkX2RhdGUgPD0gQ1VSUkVOVF9EQVRFOw%3D%3D\" target=\"_blank\" rel=\"noreferrer noopener\">Try it<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id='adding-or-subtracting-days-from-the-current-date'>Adding or subtracting days from the current date <a href=\"#adding-or-subtracting-days-from-the-current-date\" class=\"anchor\" id=\"adding-or-subtracting-days-from-the-current-date\" title=\"Anchor for Adding or subtracting days from the current date\">#<\/a><\/h3>\n\n\n\n<p>You can add or subtract an interval from the current date. For example:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-9\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">SELECT<\/span> <span class=\"hljs-keyword\">CURRENT_DATE<\/span> + <span class=\"hljs-built_in\">INTERVAL<\/span> <span class=\"hljs-string\">'7 DAY'<\/span> <span class=\"hljs-keyword\">AS<\/span> next_week,\n       <span class=\"hljs-keyword\">CURRENT_DATE<\/span> - <span class=\"hljs-built_in\">INTERVAL<\/span> <span class=\"hljs-string\">'7 DAY'<\/span> <span class=\"hljs-keyword\">AS<\/span> last_week;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-9\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<h2 class=\"wp-block-heading\" id='getting-the-current-date-in-oracle-database-and-sql-server'>Getting the current date in Oracle Database and SQL Server <a href=\"#getting-the-current-date-in-oracle-database-and-sql-server\" class=\"anchor\" id=\"getting-the-current-date-in-oracle-database-and-sql-server\" title=\"Anchor for Getting the current date in Oracle Database and SQL Server\">#<\/a><\/h2>\n\n\n\n<p>Oracle Database&#8217;s <code>CURRENT_DATE<\/code> function returns a value that includes both date and time. To get the current date without time, you use the <code>TRUNC<\/code> function to truncate the time part:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-10\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">SELECT<\/span>\n  TRUNC(<span class=\"hljs-keyword\">CURRENT_DATE<\/span>)\n<span class=\"hljs-keyword\">FROM<\/span>\n  dual;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-10\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>SQL Server does not support <code>CURRENT_DATE<\/code> function. However, it offers a function called <code>GETDATE()<\/code>&nbsp;that returns the current date and time.<\/p>\n\n\n\n<p>To get the current date, you use the <code>CAST()<\/code> function with the <code>GETDATE()<\/code>&nbsp;function as shown in the following statement:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-11\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">SELECT<\/span> <span class=\"hljs-keyword\">CAST<\/span>(<span class=\"hljs-keyword\">GETDATE<\/span>() <span class=\"hljs-keyword\">AS<\/span> <span class=\"hljs-built_in\">DATE<\/span>) <span class=\"hljs-string\">'Current Date'<\/span>;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-11\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<h2 class=\"wp-block-heading\" id='summary'>Summary <a href=\"#summary\" class=\"anchor\" id=\"summary\" title=\"Anchor for Summary\">#<\/a><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use the SQL <code>CURRENT_DATE<\/code> function to return the current date in the format <code>YYYY-MM-DD<\/code>.<\/li>\n<\/ul>\n<div class=\"helpful-block-content\" data-title=\"\">\n\t<header>\n\t\t<div class=\"wth-question\">Was this tutorial helpful ?<\/div>\n\t\t<div class=\"wth-thumbs\">\n\t\t\t<button\n\t\t\t\tdata-post=\"1530\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqltutorial.org\/sql-date-functions\/sql-current-date\/\"\n\t\t\t\tdata-post-title=\"SQL CURRENT_DATE Function\"\n\t\t\t\tdata-response=\"1\"\n\t\t\t\tclass=\"wth-btn-rounded wth-yes-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t\tclass=\"feather feather-thumbs-up block w-full h-full\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> Yes <\/span>\n\t\t\t<\/button>\n\n\t\t\t<button\n\t\t\t\tdata-response=\"0\"\n\t\t\t\tdata-post=\"1530\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqltutorial.org\/sql-date-functions\/sql-current-date\/\"\n\t\t\t\tdata-post-title=\"SQL CURRENT_DATE Function\"\n\t\t\t\tclass=\"wth-btn-rounded wth-no-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> No <\/span>\n\t\t\t<\/button>\n\t\t<\/div>\n\t<\/header>\n\n\t<div class=\"wth-form hidden\">\n\t\t<div class=\"wth-form-wrapper\">\n\t\t\t<div class=\"wth-title\"><\/div>\n\t\t\t\n\t\t\t<textarea class=\"wth-message\"><\/textarea>\n\n\t\t\t<button class=\"btn btn-primary wth-btn-submit\">Send<\/button>\n\t\t\t<button class=\"btn wth-btn-cancel\">Cancel<\/button>\n\t\t\n\t\t<\/div>\n\t<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>This tutorial shows you how to use the SQL CURRENT_DATE function to get the current date.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1498,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1530","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>SQL CURRENT_DATE Function<\/title>\n<meta name=\"description\" content=\"This tutorial shows you how to use the SQL CURRENT_DATE function to get the current date of the database server.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.sqltutorial.org\/sql-date-functions\/sql-current-date\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL CURRENT_DATE Function\" \/>\n<meta property=\"og:description\" content=\"This tutorial shows you how to use the SQL CURRENT_DATE function to get the current date of the database server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqltutorial.org\/sql-date-functions\/sql-current-date\/\" \/>\n<meta property=\"og:site_name\" content=\"SQL Tutorial\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-20T15:43:08+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.sqltutorial.org\/sql-date-functions\/sql-current-date\/\",\"url\":\"https:\/\/www.sqltutorial.org\/sql-date-functions\/sql-current-date\/\",\"name\":\"SQL CURRENT_DATE Function\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqltutorial.org\/#website\"},\"datePublished\":\"2018-07-21T10:03:34+00:00\",\"dateModified\":\"2025-01-20T15:43:08+00:00\",\"description\":\"This tutorial shows you how to use the SQL CURRENT_DATE function to get the current date of the database server.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.sqltutorial.org\/sql-date-functions\/sql-current-date\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sqltutorial.org\/sql-date-functions\/sql-current-date\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sqltutorial.org\/sql-date-functions\/sql-current-date\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sqltutorial.org\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Date Functions\",\"item\":\"https:\/\/www.sqltutorial.org\/sql-date-functions\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"SQL CURRENT_DATE Function\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sqltutorial.org\/#website\",\"url\":\"https:\/\/www.sqltutorial.org\/\",\"name\":\"SQL Tutorial\",\"description\":\"An Interactive SQL Tutorial\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sqltutorial.org\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SQL CURRENT_DATE Function","description":"This tutorial shows you how to use the SQL CURRENT_DATE function to get the current date of the database server.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.sqltutorial.org\/sql-date-functions\/sql-current-date\/","og_locale":"en_US","og_type":"article","og_title":"SQL CURRENT_DATE Function","og_description":"This tutorial shows you how to use the SQL CURRENT_DATE function to get the current date of the database server.","og_url":"https:\/\/www.sqltutorial.org\/sql-date-functions\/sql-current-date\/","og_site_name":"SQL Tutorial","article_modified_time":"2025-01-20T15:43:08+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.sqltutorial.org\/sql-date-functions\/sql-current-date\/","url":"https:\/\/www.sqltutorial.org\/sql-date-functions\/sql-current-date\/","name":"SQL CURRENT_DATE Function","isPartOf":{"@id":"https:\/\/www.sqltutorial.org\/#website"},"datePublished":"2018-07-21T10:03:34+00:00","dateModified":"2025-01-20T15:43:08+00:00","description":"This tutorial shows you how to use the SQL CURRENT_DATE function to get the current date of the database server.","breadcrumb":{"@id":"https:\/\/www.sqltutorial.org\/sql-date-functions\/sql-current-date\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqltutorial.org\/sql-date-functions\/sql-current-date\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqltutorial.org\/sql-date-functions\/sql-current-date\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqltutorial.org\/"},{"@type":"ListItem","position":2,"name":"SQL Date Functions","item":"https:\/\/www.sqltutorial.org\/sql-date-functions\/"},{"@type":"ListItem","position":3,"name":"SQL CURRENT_DATE Function"}]},{"@type":"WebSite","@id":"https:\/\/www.sqltutorial.org\/#website","url":"https:\/\/www.sqltutorial.org\/","name":"SQL Tutorial","description":"An Interactive SQL Tutorial","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqltutorial.org\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/pages\/1530","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/comments?post=1530"}],"version-history":[{"count":0,"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/pages\/1530\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/pages\/1498"}],"wp:attachment":[{"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/media?parent=1530"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}