﻿<?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>SQL Server MySQL &#8211; SQL Server Eğitimleri</title>
	<atom:link href="https://sqlserveregitimleri.com/etiket/sql-server-mysql/feed" rel="self" type="application/rss+xml" />
	<link>https://sqlserveregitimleri.com</link>
	<description>SQL Server ile ilgili her şey</description>
	<lastBuildDate>Fri, 07 Oct 2022 09:35:07 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.1</generator>
	<item>
		<title>SQL Server&#8217;da Veri Tiplerinin MySQL Karşılıkları</title>
		<link>https://sqlserveregitimleri.com/sql-serverda-veri-tiplerinin-mysql-karsiliklari</link>
		
		<dc:creator><![CDATA[Yavuz Selim Kart]]></dc:creator>
		<pubDate>Fri, 07 Oct 2022 09:35:07 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[MySQL Veri Tipleri]]></category>
		<category><![CDATA[SQL Server MySQL]]></category>
		<category><![CDATA[SQL Server'da Veri Tiplerinin MySQL Karşılıkları]]></category>
		<guid isPermaLink="false">https://sqlserveregitimleri.com/?p=14367</guid>

					<description><![CDATA[Herkese merhaba, Bu yazıda SQL Server’da veri tiplerinin MySQL karşılıklarını göstermeye çalışacağım. SQL Server ve MySQL benzer veri türlerine sahiptir. Çoğu eşittir fakat bazıları eşit...]]></description>
										<content:encoded><![CDATA[<p>Herkese merhaba,</p>
<p>Bu yazıda SQL Server’da veri tiplerinin MySQL karşılıklarını göstermeye çalışacağım.</p>
<p>SQL Server ve MySQL benzer veri türlerine sahiptir. Çoğu eşittir fakat bazıları eşit değildir. SQL Server&#8217;dan MySQL&#8217;e geçiş yaparken, doğru tür eşlemeyi akılda tutmak ve aşağıdaki tabloyu kullanmak önemlidir.</p>
<table class="thin-space" style="width: 80%; height: 816px;" width="80%">
<thead>
<tr style="height: 24px;">
<th style="background-color: red; height: 24px;" scope="col">SQL Server</th>
<th style="background-color: red; height: 24px;" scope="col">MySQL</th>
</tr>
</thead>
<tbody>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">INT</td>
<td style="height: 24px;" scope="row">INT</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">TINYINT</td>
<td style="height: 24px;" scope="row">TINYINT</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">SMALLINT</td>
<td style="height: 24px;" scope="row">SMALLINT</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">BIGINT</td>
<td style="height: 24px;" scope="row">BIGINT</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">BIT</td>
<td style="height: 24px;" scope="row">TINYINT(1)</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">FLOAT</td>
<td style="height: 24px;" scope="row">FLOAT</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">REAL</td>
<td style="height: 24px;" scope="row">FLOAT</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">NUMERIC</td>
<td style="height: 24px;" scope="row">DECIMAL</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">DECIMAL</td>
<td style="height: 24px;" scope="row">DECIMAL</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">MONEY</td>
<td style="height: 24px;" scope="row">DECIMAL</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">SMALLMONEY</td>
<td style="height: 24px;" scope="row">DECIMAL</td>
</tr>
<tr style="height: 72px;">
<td style="height: 72px;" scope="row">CHAR</td>
<td style="height: 72px;" scope="row">CHAR/LONGTEXT</td>
</tr>
<tr style="height: 120px;">
<td style="height: 120px;" scope="row">NCHAR</td>
<td style="height: 120px;" scope="row">CHAR/LONGTEXT</td>
</tr>
<tr style="height: 72px;">
<td style="height: 72px;" scope="row">VARCHAR</td>
<td style="height: 72px;" scope="row">VARCHAR/MEDIUMTEXT/LONGTEXT</td>
</tr>
<tr style="height: 120px;">
<td style="height: 120px;" scope="row">NVARCHAR</td>
<td style="height: 120px;" scope="row">VARCHAR/MEDIUMTEXT/LONGTEXT</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">DATE</td>
<td style="height: 24px;" scope="row">DATE</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">DATETIME</td>
<td style="height: 24px;" scope="row">DATETIME</td>
</tr>
<tr style="height: 72px;">
<td style="height: 72px;" scope="row">DATETIME2</td>
<td style="height: 72px;" scope="row">DATETIME</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">SMALLDATETIME</td>
<td style="height: 24px;" scope="row">DATETIME</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">DATETIMEOFFSET</td>
<td style="height: 24px;" scope="row">DATETIME</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">TIME</td>
<td style="height: 24px;" scope="row">TIME</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">TIMESTAMP</td>
<td style="height: 24px;" scope="row">TIMESTAMP</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">ROWVERSION</td>
<td style="height: 24px;" scope="row">TIMESTAMP</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">BINARY</td>
<td style="height: 24px;" scope="row">BINARY/MEDIUMBLOB/LONGBLOB</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">VARBINARY</td>
<td style="height: 24px;" scope="row">VARBINARY/MEDIUMBLOB/LONGBLOB</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">TEXT</td>
<td style="height: 24px;" scope="row">VARCHAR/MEDIUMTEXT/LONGTEXT</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">NTEXT</td>
<td style="height: 24px;" scope="row">VARCHAR/MEDIUMTEXT/LONGTEXT</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">IMAGE</td>
<td style="height: 24px;" scope="row">TINYBLOB/MEDIUMBLOB/LONGBLOB</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">SQL_VARIANT</td>
<td style="height: 24px;" scope="row">not migrated</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">TABLE</td>
<td style="height: 24px;" scope="row">not migrated</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">HIERARCHYID</td>
<td style="height: 24px;" scope="row">not migrated</td>
</tr>
<tr style="height: 48px;">
<td style="height: 48px;" scope="row">UNIQUEIDENTIFIER</td>
<td style="height: 48px;" scope="row">VARCHAR(64)</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">SYSNAME</td>
<td style="height: 24px;" scope="row">VARCHAR(160)</td>
</tr>
<tr style="height: 24px;">
<td style="height: 24px;" scope="row">XML</td>
<td style="height: 24px;" scope="row">TEXT</td>
</tr>
</tbody>
</table>
<p>Herkese çalışma hayatında ve yaşamında başarılar kolaylıklar.</p>
<div class='epvc-post-count'><span class='epvc-eye'></span>  <span class="epvc-count"> 212</span><span class='epvc-label'> Kez Okundu</span></div>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
