<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Zihni &#187; concat</title>
	<atom:link href="http://www.zihni.net/tag/concat/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zihni.net</link>
	<description>Zihinsel şeyler, web programlama falan filan</description>
	<lastBuildDate>Fri, 13 Aug 2010 16:22:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MySQL CONCAT Fonksiyonu</title>
		<link>http://www.zihni.net/mysql/mysql-concat-fonksiyonu/</link>
		<comments>http://www.zihni.net/mysql/mysql-concat-fonksiyonu/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 19:47:08 +0000</pubDate>
		<dc:creator>Zihni</dc:creator>
				<category><![CDATA[MySql]]></category>
		<category><![CDATA[concat]]></category>

		<guid isPermaLink="false">http://www.zihni.net/?p=118</guid>
		<description><![CDATA[


CONCAT(str1,str2,...)
MySql CONCAT fonksiyonu iki stringi birleştirir ve tek bir string yapar.

Çalışanlar tablosu aşağıdaki gibi olsun.

+-----+-----+--------+

&#124; id  &#124; adi &#124;soyadi  &#124;

+-----+-----+--------+

&#124; 1   &#124;Ali  &#124;Kaya    &#124;

&#124; 2   &#124;Veli &#124;Soylu   &#124;

&#124; 3   &#124;Esra &#124;Güzel   &#124;

+-----+-----+--------+

adi ve soyadı kolonlarını birleştirmek isteyelim:

mysql&#62; SELECT CONCAT(adi,soyadi) [...]]]></description>
			<content:encoded><![CDATA[<pre class="prettyprint">CONCAT(str1,str2,...)</pre>
<p>MySql CONCAT fonksiyonu iki stringi birleştirir ve tek bir string yapar.</p>
<pre  style="font-size:12px;">
Çalışanlar tablosu aşağıdaki gibi olsun.

+-----+-----+--------+

| id  | adi |soyadi  |

+-----+-----+--------+

| 1   |Ali  |Kaya    |

| 2   |Veli |Soylu   |

| 3   |Esra |Güzel   |

+-----+-----+--------+

adi ve soyadı kolonlarını birleştirmek isteyelim:

<code class="prettyprint">mysql&gt; SELECT CONCAT(adi,soyadi) AS adi_ve_soyad FROM calisanlar</code>

+-----+----------+

| adi_ve_soyadi  |

+----------------+

|AliKaya         |

|VeliSoylu       |

|EsraGüzel       |

+----------------+
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.zihni.net/mysql/mysql-concat-fonksiyonu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
