<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Differences between MySQL and MS SQL</title>
	<atom:link href="http://raivoratsep.com/26/differences-between-mysql-and-ms-sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://raivoratsep.com/26/differences-between-mysql-and-ms-sql/</link>
	<description></description>
	<lastBuildDate>Fri, 06 Jan 2012 17:47:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: php trivandrum</title>
		<link>http://raivoratsep.com/26/differences-between-mysql-and-ms-sql/comment-page-1/#comment-11</link>
		<dc:creator>php trivandrum</dc:creator>
		<pubDate>Mon, 14 Dec 2009 02:08:46 +0000</pubDate>
		<guid isPermaLink="false">http://raivoratsep.com/?p=26#comment-11</guid>
		<description>In the past weeks, we at Saturn SPL [http://www.saturn.in] were also passing through the nightmare of porting an application which was developed with just MySQL in view to MSSQL and php on IIS. Read about the frustration I felt at the start of the migration [ http://www.php-trivandrum.org/general-articles/migration-from-mysql-to-mssql-our-solutions/ ], and the solutions which I stitched into our application for keeping the code as such while providing the MSSQL for the specified version [http://www.php-trivandrum.org/code-snippets/migration-from-mysql-to-mssql-our-solutions-continued/], thanks to all those who have written about the differences.</description>
		<content:encoded><![CDATA[<p>In the past weeks, we at Saturn SPL [http://www.saturn.in] were also passing through the nightmare of porting an application which was developed with just MySQL in view to MSSQL and php on IIS. Read about the frustration I felt at the start of the migration [ <a href="http://www.php-trivandrum.org/general-articles/migration-from-mysql-to-mssql-our-solutions/" rel="nofollow">http://www.php-trivandrum.org/general-articles/migration-from-mysql-to-mssql-our-solutions/</a> ], and the solutions which I stitched into our application for keeping the code as such while providing the MSSQL for the specified version [http://www.php-trivandrum.org/code-snippets/migration-from-mysql-to-mssql-our-solutions-continued/], thanks to all those who have written about the differences.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Korb</title>
		<link>http://raivoratsep.com/26/differences-between-mysql-and-ms-sql/comment-page-1/#comment-10</link>
		<dc:creator>Kevin Korb</dc:creator>
		<pubDate>Thu, 03 Dec 2009 16:02:22 +0000</pubDate>
		<guid isPermaLink="false">http://raivoratsep.com/?p=26#comment-10</guid>
		<description>Another thing I noticed is using double-quotes tends to make the query barf, for example:

SELECT * FROM Product WHERE name=&quot;test&quot; is perfectly fine in MySQL, however MSSQL it NEEDS to be:

SELECT * FROM Product WHERE name = &#039;test&#039;

Typically you&#039;d bind the parameters, but sometimes you might do queries directly on the DB for admin purposes, so you might just write out the values...</description>
		<content:encoded><![CDATA[<p>Another thing I noticed is using double-quotes tends to make the query barf, for example:</p>
<p>SELECT * FROM Product WHERE name=&#8221;test&#8221; is perfectly fine in MySQL, however MSSQL it NEEDS to be:</p>
<p>SELECT * FROM Product WHERE name = &#8216;test&#8217;</p>
<p>Typically you&#8217;d bind the parameters, but sometimes you might do queries directly on the DB for admin purposes, so you might just write out the values&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://raivoratsep.com/26/differences-between-mysql-and-ms-sql/comment-page-1/#comment-9</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Tue, 01 Dec 2009 03:04:59 +0000</pubDate>
		<guid isPermaLink="false">http://raivoratsep.com/?p=26#comment-9</guid>
		<description>Isn&#039;t it crazy? I was floored when I first tried to do a LIMIT x,y in MSSQL and found out I had to use TOP, or crazy sub-queries or stored procedures just to fetch items 21-40, etc. MSSQL is very powerful and is a great database, but could certainly learn a lot from MySQL at the same time.</description>
		<content:encoded><![CDATA[<p>Isn&#8217;t it crazy? I was floored when I first tried to do a LIMIT x,y in MSSQL and found out I had to use TOP, or crazy sub-queries or stored procedures just to fetch items 21-40, etc. MSSQL is very powerful and is a great database, but could certainly learn a lot from MySQL at the same time.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

