{"id":858,"date":"2016-07-14T09:28:58","date_gmt":"2016-07-14T09:28:58","guid":{"rendered":"https:\/\/sqltutorial.org\/?page_id=858"},"modified":"2025-02-04T05:50:46","modified_gmt":"2025-02-04T12:50:46","slug":"sql-concat","status":"publish","type":"page","link":"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/","title":{"rendered":"SQL CONCAT Function"},"content":{"rendered":"\n<p><strong>Summary<\/strong>: in this tutorial, you will learn how to use the SQL <code>CONCAT<\/code> function to concatenate two or more strings into a single string.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='introduction-to-sql-concat-function'>Introduction to SQL CONCAT function <a href=\"#introduction-to-sql-concat-function\" class=\"anchor\" id=\"introduction-to-sql-concat-function\" title=\"Anchor for Introduction to SQL CONCAT function\">#<\/a><\/h2>\n\n\n\n<p>The SQL <code>CONCAT&nbsp;<\/code>function concatenates two or more strings into one string.<\/p>\n\n\n\n<p>Here&#8217;s the syntax of the <code>CONCAT<\/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\">CONCAT(string1, string2,..);<\/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>To concatenate multiple strings, you pass them as a list of comma-separated arguments to the <code>CONCAT<\/code> function.<\/p>\n\n\n\n<p>The <code>CONCAT<\/code> function returns a string which is the combination of&nbsp;the input&nbsp;strings. It returns <code>NULL<\/code> if one of the arguments is <code>NULL<\/code>.<\/p>\n\n\n\n<p class=\"note\">You can use the <a href=\"https:\/\/www.sqltutorial.org\/sql-is-null\/\"><code>IS NULL<\/code><\/a> operator or <a href=\"https:\/\/www.sqltutorial.org\/sql-functions\/sql-coalesce\/\"><code>COALESCE<\/code><\/a> and <code>NULLIF<\/code> functions to handle <code>NULL<\/code> .<\/p>\n\n\n\n<p>Most database systems&nbsp;support the <code>CONCAT<\/code> function with some differences among them.<\/p>\n\n\n\n<p>For example, the <code>CONCAT<\/code> function in MySQL allows you to concatenate more than two strings, whereas the <code>CONCAT<\/code> function in Oracle Database concatenates exactly two strings.<\/p>\n\n\n\n<p>Besides using the <code>CONCAT<\/code> function, you can use the concatenation operator, e.g., in Oracle and PostgreSQL, you can use the <code>||<\/code> operator to concatenate two or more strings. In Microsoft SQL Server, you use the <code>+<\/code> operator.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='sql-concat-function-examples'>SQL CONCAT function examples <a href=\"#sql-concat-function-examples\" class=\"anchor\" id=\"sql-concat-function-examples\" title=\"Anchor for SQL CONCAT function examples\">#<\/a><\/h2>\n\n\n\n<p>The following statement uses the <code>CONCAT<\/code> function to concatenate two strings:<\/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\">CONCAT<\/span>(<span class=\"hljs-string\">'SQL CONCAT function'<\/span>, <span class=\"hljs-string\">' demo'<\/span>);<\/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=U0VMRUNUCiAgQ09OQ0FUKCdTUUwgQ09OQ0FUIGZ1bmN0aW9uJywgJyBkZW1vJyk7\" target=\"_blank\" rel=\"noreferrer noopener\">Try it<\/a><\/p>\n\n\n\n<p>Output:<\/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\">        concat\n<span class=\"hljs-comment\">----------------------<\/span>\n SQL CONCAT function demo\n(1 row)<\/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 following statement uses the <code>CONCAT<\/code> function to return the full name of the employees by concatenating the first name, space, and last name.<\/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\">SELECT<\/span>\n  <span class=\"hljs-keyword\">CONCAT<\/span>(first_name, <span class=\"hljs-string\">' '<\/span>, last_name) <span class=\"hljs-keyword\">AS<\/span> <span class=\"hljs-keyword\">name<\/span>\n<span class=\"hljs-keyword\">FROM<\/span>\n  employees\n<span class=\"hljs-keyword\">ORDER<\/span> <span class=\"hljs-keyword\">BY<\/span>\n  <span class=\"hljs-keyword\">name<\/span>;<\/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=U0VMRUNUIENPTkNBVChmaXJzdF9uYW1lLCAnICcsIGxhc3RfbmFtZSkgQVMgbmFtZSBGUk9NIGVtcGxveWVlcyBPUkRFUiBCWSBuYW1lOw%3D%3D\" target=\"_blank\" rel=\"noreferrer noopener\">Try it<\/a><\/p>\n\n\n\n<p>Output:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"161\" height=\"177\" src=\"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/07\/SQL-CONCAT-example.png\" alt=\"SQL CONCAT example\" class=\"wp-image-900\" title=\"SQL CONCAT example\"\/><\/figure>\n\n\n\n<p class=\"lang:pgsql decode:true\">If you are using the Oracle Database, you have to apply the <code>CONCAT<\/code> function twice the achieve the same result:<\/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\">SELECT<\/span>\n  <span class=\"hljs-keyword\">CONCAT<\/span>(<span class=\"hljs-keyword\">CONCAT<\/span>(first_name, <span class=\"hljs-string\">' '<\/span>), last_name) <span class=\"hljs-keyword\">AS<\/span> <span class=\"hljs-keyword\">name<\/span>\n<span class=\"hljs-keyword\">FROM<\/span>\n  employees\n<span class=\"hljs-keyword\">ORDER<\/span> <span class=\"hljs-keyword\">BY<\/span>\n  <span class=\"hljs-keyword\">name<\/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=U0VMRUNUIENPTkNBVChDT05DQVQoZmlyc3RfbmFtZSwgJyAnKSwgbGFzdF9uYW1lKSBBUyBuYW1lIEZST00gZW1wbG95ZWVzIE9SREVSIEJZIG5hbWU7\" target=\"_blank\" rel=\"noreferrer noopener\">Try it<\/a><\/p>\n\n\n\n<p>The inner <code>CONCAT<\/code> function concatenates the first name with space and the outer <code>CONCAT<\/code> function concatenates the result of the inner <code>CONCAT<\/code> function with the last name.<\/p>\n\n\n\n<p>Using the concatenation operator in Oracle (and also PostgreSQL) will be much cleaner.<\/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>\n  first_name || <span class=\"hljs-string\">' '<\/span> || last_name <span class=\"hljs-keyword\">AS<\/span> <span class=\"hljs-keyword\">name<\/span>\n<span class=\"hljs-keyword\">FROM<\/span>\n  employees\n<span class=\"hljs-keyword\">ORDER<\/span> <span class=\"hljs-keyword\">BY<\/span>\n  <span class=\"hljs-keyword\">name<\/span>;<\/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=U0VMRUNUIGZpcnN0X25hbWUgfHwgJyAnIHx8IGxhc3RfbmFtZSBBUyBuYW1lIEZST00gZW1wbG95ZWVzIE9SREVSIEJZIG5hbWU7\" target=\"_blank\" rel=\"noreferrer noopener\">Try it<\/a><\/p>\n\n\n\n<p>In Microsoft SQL Server, you can use the + operator to concatenate strings like this:<\/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\"><span class=\"hljs-keyword\">SELECT<\/span>\n  first_name + <span class=\"hljs-string\">' '<\/span> + last_name <span class=\"hljs-keyword\">AS<\/span> <span class=\"hljs-keyword\">name<\/span>\n<span class=\"hljs-keyword\">FROM<\/span>\n  employees\n<span class=\"hljs-keyword\">ORDER<\/span> <span class=\"hljs-keyword\">BY<\/span>\n  <span class=\"hljs-keyword\">name<\/span>;<\/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<p>If you are using MySQL or PostgreSQL, you can use the <code>CONCAT_WS<\/code> function to concatenate strings with a separator.<\/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\">CONCAT_WS(separator,string1,string2,...);<\/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>For example, you can use the <code>CONCAT_WS<\/code> function to construct the employee&#8217;s full names:<\/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>\n  <span class=\"hljs-keyword\">CONCAT_WS<\/span>(<span class=\"hljs-string\">' '<\/span>, first_name, last_name) <span class=\"hljs-keyword\">AS<\/span> <span class=\"hljs-keyword\">name<\/span>\n<span class=\"hljs-keyword\">FROM<\/span>\n  employees\n<span class=\"hljs-keyword\">ORDER<\/span> <span class=\"hljs-keyword\">BY<\/span>\n  <span class=\"hljs-keyword\">name<\/span>;<\/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<p><a href=\"https:\/\/www.sqltutorial.org\/playground\/?q=U0VMRUNUIENPTkNBVF9XUygnICcsIGZpcnN0X25hbWUsIGxhc3RfbmFtZSkgQVMgbmFtZSBGUk9NIGVtcGxveWVlcyBPUkRFUiBCWSBuYW1lOw%3D%3D\" target=\"_blank\" rel=\"noreferrer noopener\">Try it<\/a><\/p>\n\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>CONCAT<\/code> function to concatenate two or more strings into a single string.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id='databases'>Databases <a href=\"#databases\" class=\"anchor\" id=\"databases\" title=\"Anchor for Databases\">#<\/a><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/www.pgtutorial.com\/postgresql-tutorial\/postgresql-concat\/\" target=\"_blank\" rel=\"noreferrer noopener\">PostgreSQL CONCAT Function<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.oracletutorial.com\/oracle-string-functions\/oracle-concat\/\" target=\"_blank\" rel=\"noreferrer noopener\">Oracle CONCAT Function<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.mysqltutorial.org\/mysql-string-functions\/mysql-concat\/\" target=\"_blank\" rel=\"noreferrer noopener\">MySQL CONCAT Function<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.sqlitetutorial.net\/sqlite-string-functions\/sqlite-concat\/\" target=\"_blank\" rel=\"noreferrer noopener\">SQLite CONCAT Function<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.db2tutorial.com\/db2-string-functions\/db2-concat\/\" target=\"_blank\" rel=\"noreferrer noopener\">Db2 CONCAT Function<\/a><\/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=\"858\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/\"\n\t\t\t\tdata-post-title=\"SQL CONCAT 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=\"858\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/\"\n\t\t\t\tdata-post-title=\"SQL CONCAT 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 SQL CONCAT function to concatenate two or more strings into one string.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1080,"menu_order":4,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-858","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 CONCAT Function<\/title>\n<meta name=\"description\" content=\"This tutorial shows you how to use SQL CONCAT function to concatenate two or more strings into one string.\" \/>\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-string-functions\/sql-concat\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL CONCAT Function\" \/>\n<meta property=\"og:description\" content=\"This tutorial shows you how to use SQL CONCAT function to concatenate two or more strings into one string.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/\" \/>\n<meta property=\"og:site_name\" content=\"SQL Tutorial\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-04T12:50:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/07\/SQL-CONCAT-example.png\" \/>\n\t<meta property=\"og:image:width\" content=\"161\" \/>\n\t<meta property=\"og:image:height\" content=\"177\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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-string-functions\/sql-concat\/\",\"url\":\"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/\",\"name\":\"SQL CONCAT Function\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqltutorial.org\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/07\/SQL-CONCAT-example.png\",\"datePublished\":\"2016-07-14T09:28:58+00:00\",\"dateModified\":\"2025-02-04T12:50:46+00:00\",\"description\":\"This tutorial shows you how to use SQL CONCAT function to concatenate two or more strings into one string.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/#primaryimage\",\"url\":\"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/07\/SQL-CONCAT-example.png\",\"contentUrl\":\"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/07\/SQL-CONCAT-example.png\",\"width\":161,\"height\":177},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sqltutorial.org\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL String Functions\",\"item\":\"https:\/\/www.sqltutorial.org\/sql-string-functions\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"SQL CONCAT 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 CONCAT Function","description":"This tutorial shows you how to use SQL CONCAT function to concatenate two or more strings into one string.","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-string-functions\/sql-concat\/","og_locale":"en_US","og_type":"article","og_title":"SQL CONCAT Function","og_description":"This tutorial shows you how to use SQL CONCAT function to concatenate two or more strings into one string.","og_url":"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/","og_site_name":"SQL Tutorial","article_modified_time":"2025-02-04T12:50:46+00:00","og_image":[{"width":161,"height":177,"url":"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/07\/SQL-CONCAT-example.png","type":"image\/png"}],"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-string-functions\/sql-concat\/","url":"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/","name":"SQL CONCAT Function","isPartOf":{"@id":"https:\/\/www.sqltutorial.org\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/#primaryimage"},"image":{"@id":"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/07\/SQL-CONCAT-example.png","datePublished":"2016-07-14T09:28:58+00:00","dateModified":"2025-02-04T12:50:46+00:00","description":"This tutorial shows you how to use SQL CONCAT function to concatenate two or more strings into one string.","breadcrumb":{"@id":"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/#primaryimage","url":"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/07\/SQL-CONCAT-example.png","contentUrl":"https:\/\/www.sqltutorial.org\/wp-content\/uploads\/2016\/07\/SQL-CONCAT-example.png","width":161,"height":177},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqltutorial.org\/sql-string-functions\/sql-concat\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqltutorial.org\/"},{"@type":"ListItem","position":2,"name":"SQL String Functions","item":"https:\/\/www.sqltutorial.org\/sql-string-functions\/"},{"@type":"ListItem","position":3,"name":"SQL CONCAT 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\/858","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=858"}],"version-history":[{"count":0,"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/pages\/858\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/pages\/1080"}],"wp:attachment":[{"href":"https:\/\/www.sqltutorial.org\/wp-json\/wp\/v2\/media?parent=858"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}