<?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>unsharpTech &#187; MySQL</title>
	<atom:link href="http://unsharptech.com/category/web-dev/mysql-web-dev/feed/" rel="self" type="application/rss+xml" />
	<link>http://unsharptech.com</link>
	<description>when the bleeding edge just doesn&#039;t cut it</description>
	<lastBuildDate>Thu, 29 Jul 2010 19:06:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>MySQL: Convert all Values in Column to Upper Case</title>
		<link>http://unsharptech.com/2008/02/29/mysql-convert-all-values-in-column-to-upper-case/</link>
		<comments>http://unsharptech.com/2008/02/29/mysql-convert-all-values-in-column-to-upper-case/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 03:18:24 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[How2]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[osCommerce]]></category>

		<guid isPermaLink="false">http://unsharptech.com/2008/02/29/mysql-convert-all-values-in-column-to-upper-case/</guid>
		<description><![CDATA[Recently using osCommerce I had a customer who wished to have all the products&#8217; names in uppercase but they had been entered in mixed case. After having some trouble finding a simple answer through Google, I pieced together this simple query that can also be adapted to other situations. The below is a MySQL query [...]]]></description>
			<content:encoded><![CDATA[<p>Recently using <strong>osCommerce </strong>I had a customer who wished to have all the products&#8217; names in uppercase but they had been entered in mixed case. After having some trouble finding a simple answer through Google, I pieced together this simple query that can also be adapted to other situations.</p>
<p><a href="http://unsharptech.com/2008/02/29/mysql-convert-all-values-in-column-to-upper-case/"><img src="http://unsharptech.com/wp-content/mysql_query.gif" alt="MySQL Query" /></a></p>
<p>The below is a <strong>MySQL query</strong> to update all of the products&#8217; names in an <strong>osCommerce </strong>catalog to <strong>uppercase </strong>- you can copy this into <strong>phpMyAdmin</strong>.</p>
<pre class="brush: sql">UPDATE products_description SET `products_name` = UPPER( `products_name` )</pre>
<p><strong>OR GENERICALLY:</strong></p>
<pre class="brush: sql">UPDATE table_name SET `column_name` = UPPER( `column_name` )</pre>
]]></content:encoded>
			<wfw:commentRss>http://unsharptech.com/2008/02/29/mysql-convert-all-values-in-column-to-upper-case/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
