{"id":989,"date":"2016-05-19T11:22:43","date_gmt":"2016-05-19T04:22:43","guid":{"rendered":"http:\/\/www.sqlitetutorial.net\/?page_id=989"},"modified":"2024-04-14T16:18:12","modified_gmt":"2024-04-14T09:18:12","slug":"sqlite-functions","status":"publish","type":"page","link":"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/","title":{"rendered":"SQLite Functions"},"content":{"rendered":"\n<p>This section provides the core SQLite functions including <a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-aggregate-functions\/\">aggregate functions<\/a>, <a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-date-functions\/sqlite-datetime-function\/\">date &amp; time functions<\/a>, <a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-string-functions\/\">string functions<\/a>, and <a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-math-functions\/\">math functions<\/a>.<\/p>\n\n\n<section class=\"feature-pages\"><article class=\"feature-page\"><div class=\"feature-image\"><img decoding=\"async\" src=\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-Aggregate-Functions-150x150.png\" width =\"90\" height=\"90\"><\/div><div class=\"feature-body\">\n\t\t\t\t<h3>\n\t\t\t\t\t<a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-aggregate-functions\/\">SQLite Aggregate Functions<\/a>\n\t\t\t\t<\/h3>\n\t\t\t\t<div>This tutorial shows you how to use the SQLite aggregate functions to find the maximum, minimum, average, sum, and count of a set of values.<\/div>\n\t\t\t<\/div>\n\t\t<\/article><article class=\"feature-page\"><div class=\"feature-image\"><img decoding=\"async\" src=\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-Date-Functions-150x150.png\" width =\"90\" height=\"90\"><\/div><div class=\"feature-body\">\n\t\t\t\t<h3>\n\t\t\t\t\t<a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-date-functions\/\">SQLite Date Functions<\/a>\n\t\t\t\t<\/h3>\n\t\t\t\t<div>This section provides you with SQLite date and time functions that help you manipulate datetime data effectively.<\/div>\n\t\t\t<\/div>\n\t\t<\/article><article class=\"feature-page\"><div class=\"feature-image\"><img decoding=\"async\" src=\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-String-Functions-150x150.png\" width =\"90\" height=\"90\"><\/div><div class=\"feature-body\">\n\t\t\t\t<h3>\n\t\t\t\t\t<a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-string-functions\/\">SQLite String Functions<\/a>\n\t\t\t\t<\/h3>\n\t\t\t\t<div>This section shows the most commonly used SQLite string functions that help you manipulate character string data effectively.<\/div>\n\t\t\t<\/div>\n\t\t<\/article><article class=\"feature-page\"><div class=\"feature-image\"><img decoding=\"async\" src=\"https:\/\/www.sqlitetutorial.net\/wp-content\/uploads\/2018\/11\/SQLite-Window-Functions-150x150.png\" width =\"90\" height=\"90\"><\/div><div class=\"feature-body\">\n\t\t\t\t<h3>\n\t\t\t\t\t<a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-window-functions\/\">SQLite Window Functions<\/a>\n\t\t\t\t<\/h3>\n\t\t\t\t<div>SQLite window functions perform a calculation on a set of rows that are related to the current row. Unlike aggregate functions, window functions do not cause rows to become grouped into a single result row.<\/div>\n\t\t\t<\/div>\n\t\t<\/article><\/section>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-aggregate-functions\/\">SQLite aggregate functions<\/a><\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Name<\/strong><\/td><td><strong>Description<\/strong><\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-avg\/\">AVG<\/a><\/td><td>Return the average value of non-null values in a group<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-count-function\/\">COUNT<\/a><\/td><td>Return the total number of rows in a table.<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-max\/\">MAX<\/a><\/td><td>Return the maximum value&nbsp;of all values in a group.<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-min\/\">MIN<\/a><\/td><td>Return the minimum value&nbsp;of all values in a group.<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-sum\/\">SUM<\/a><\/td><td>Return the sum of all non-null values in a column<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-group_concat\/\">GROUP_CONCAT<\/a><\/td><td>Concatenate non-null values in a column<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-string-functions\/\">SQLite string functions<\/a><\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Name<\/strong><\/td><td><strong>Description<\/strong><\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/sqlite-substr\/\">SUBSTR<\/a><\/td><td>Extract and return a substring with a predefined length starting at a specified position in a source string<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/sqlite-trim\/\">TRIM<\/a><\/td><td>Return a copy of a string with specified characters removed from the beginning and the end of a string.<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/sqlite-ltrim\/\">LTRIM<\/a><\/td><td>Return a copy of a string that has specified characters removed from the beginning of a string.<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/sqlite-rtrim\/\">RTRIM<\/a><\/td><td>Return a copy of a string that has specified characters removed from the end of a string.<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/sqlite-length\/\">LENGTH<\/a><\/td><td>Return the number of characters in a string or the number of bytes in a BLOB.<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-replace-function\/\">REPLACE<\/a><\/td><td>Return a copy of a string with each instance of a substring replaced by the other substring.<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/sqlite-upper\/\">UPPER<\/a><\/td><td>Return a copy of a string with all of the characters converted to uppercase.<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/sqlite-lower\/\">LOWER<\/a><\/td><td>Return a copy of a string with all of the characters converted to lowercase.<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/sqlite-instr\/\">INSTR<\/a><\/td><td>Find\u00a0a substring in a string and return an integer indicating\u00a0the position of the first occurrence of the substring.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">SQLite control flow functions<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Name<\/strong><\/td><td><strong>Description<\/strong><\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/sqlite-coalesce\/\">COALESCE<\/a><\/td><td>Return&nbsp;the first non-null argument<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/sqlite-ifnull\/\">IFNULL<\/a><\/td><td>Provide the NULL if\/else construct<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/sqlite-iif\/\">IIF<\/a><\/td><td>Add if-else logic to queries.<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/sqlite-nullif\/\">NULLIF<\/a><\/td><td>Return NULL if the first argument is equal to the second argument.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">SQlite date and time functions<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Name<\/strong><\/td><td><strong>Description<\/strong><\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-date-functions\/sqlite-date-function\/\">DATE<\/a><\/td><td>Calculate the date based on multiple date modifiers.<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-date-functions\/sqlite-time-function\/\">TIME<\/a><\/td><td>Calculate the&nbsp;time based on multiple date modifiers.<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-date-functions\/sqlite-datetime-function\/\">DATETIME<\/a><\/td><td>Calculate the date &amp; time based on one or more date modifiers.<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-date-functions\/sqlite-julianday-function\/\">JULIANDAY<\/a><\/td><td>Return the <a href=\"http:\/\/en.wikipedia.org\/wiki\/Julian_day\">Julian day<\/a>, which is the number of days since noon in Greenwich on November 24, 4714 B.C.<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-date-functions\/sqlite-strftime-function\/\">STRFTIME<\/a><\/td><td>Format the date based on a specified format string.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">SQLite math functions<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Name<\/strong><\/td><td><strong>Description<\/strong><\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/sqlite-abs\/\">ABS<\/a><\/td><td>Return the absolute value of a number.<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/sqlite-random\/\">RANDOM<\/a><\/td><td>Return a random integer value.<\/td><\/tr><tr><td><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/sqlite-round\/\">ROUND<\/a><\/td><td>Round off a floating value to a specified precision.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>For a complete <a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-math-functions\/\">list of math functions in SQLite, check this page<\/a>.<\/p>\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=\"989\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/\"\n\t\t\t\tdata-post-title=\"SQLite Functions\"\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=\"989\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/\"\n\t\t\t\tdata-post-title=\"SQLite Functions\"\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 section provides you with the core functions of the SQLite including aggregate functions, date &#038; time functions, string functions, and math functions.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":5,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-989","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>SQLite Functions<\/title>\n<meta name=\"description\" content=\"This section provides you with the core functions of the SQLite including aggregate functions, date &amp; time functions, string functions, and math functions.\" \/>\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.sqlitetutorial.net\/sqlite-functions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQLite Functions\" \/>\n<meta property=\"og:description\" content=\"This section provides you with the core functions of the SQLite including aggregate functions, date &amp; time functions, string functions, and math functions.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/\" \/>\n<meta property=\"og:site_name\" content=\"SQLite Tutorial\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-14T09:18:12+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\":\"Article\",\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/www.sqlitetutorial.net\/#\/schema\/person\/6d69b968cad0102e30d6694ed8dc6427\"},\"headline\":\"SQLite Functions\",\"datePublished\":\"2016-05-19T04:22:43+00:00\",\"dateModified\":\"2024-04-14T09:18:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/\"},\"wordCount\":414,\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/\",\"url\":\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/\",\"name\":\"SQLite Functions\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/#website\"},\"datePublished\":\"2016-05-19T04:22:43+00:00\",\"dateModified\":\"2024-04-14T09:18:12+00:00\",\"description\":\"This section provides you with the core functions of the SQLite including aggregate functions, date & time functions, string functions, and math functions.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sqlitetutorial.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQLite Functions\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sqlitetutorial.net\/#website\",\"url\":\"https:\/\/www.sqlitetutorial.net\/\",\"name\":\"SQLite Tutorial\",\"description\":\"A Step-by-step SQLite Tutorial\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sqlitetutorial.net\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.sqlitetutorial.net\/#\/schema\/person\/6d69b968cad0102e30d6694ed8dc6427\",\"name\":\"admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SQLite Functions","description":"This section provides you with the core functions of the SQLite including aggregate functions, date & time functions, string functions, and math functions.","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.sqlitetutorial.net\/sqlite-functions\/","og_locale":"en_US","og_type":"article","og_title":"SQLite Functions","og_description":"This section provides you with the core functions of the SQLite including aggregate functions, date & time functions, string functions, and math functions.","og_url":"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/","og_site_name":"SQLite Tutorial","article_modified_time":"2024-04-14T09:18:12+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/#article","isPartOf":{"@id":"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/"},"author":{"name":"admin","@id":"https:\/\/www.sqlitetutorial.net\/#\/schema\/person\/6d69b968cad0102e30d6694ed8dc6427"},"headline":"SQLite Functions","datePublished":"2016-05-19T04:22:43+00:00","dateModified":"2024-04-14T09:18:12+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/"},"wordCount":414,"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/","url":"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/","name":"SQLite Functions","isPartOf":{"@id":"https:\/\/www.sqlitetutorial.net\/#website"},"datePublished":"2016-05-19T04:22:43+00:00","dateModified":"2024-04-14T09:18:12+00:00","description":"This section provides you with the core functions of the SQLite including aggregate functions, date & time functions, string functions, and math functions.","breadcrumb":{"@id":"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqlitetutorial.net\/sqlite-functions\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqlitetutorial.net\/sqlite-functions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqlitetutorial.net\/"},{"@type":"ListItem","position":2,"name":"SQLite Functions"}]},{"@type":"WebSite","@id":"https:\/\/www.sqlitetutorial.net\/#website","url":"https:\/\/www.sqlitetutorial.net\/","name":"SQLite Tutorial","description":"A Step-by-step SQLite Tutorial","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqlitetutorial.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.sqlitetutorial.net\/#\/schema\/person\/6d69b968cad0102e30d6694ed8dc6427","name":"admin"}]}},"_links":{"self":[{"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/pages\/989","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/comments?post=989"}],"version-history":[{"count":3,"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/pages\/989\/revisions"}],"predecessor-version":[{"id":3105,"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/pages\/989\/revisions\/3105"}],"wp:attachment":[{"href":"https:\/\/www.sqlitetutorial.net\/wp-json\/wp\/v2\/media?parent=989"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}