<?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>PersonalBlog &#187; operator precedence</title>
	<atom:link href="http://arimita.web.id/tag/operator-precedence/feed/" rel="self" type="application/rss+xml" />
	<link>http://arimita.web.id</link>
	<description>Just another personal weblog</description>
	<lastBuildDate>Mon, 19 Jul 2010 08:31:10 +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>Operator Precedence</title>
		<link>http://arimita.web.id/2010/06/operator-precedence/</link>
		<comments>http://arimita.web.id/2010/06/operator-precedence/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 13:41:53 +0000</pubDate>
		<dc:creator>mythworks</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[operator precedence]]></category>

		<guid isPermaLink="false">http://arimita.web.id/?p=218</guid>
		<description><![CDATA[The precedence of operators determines the order of evaluation. To override this order and group terms explicity, use parentheses. Lets see the example below:

Select 6+2-4*1, (6+2-4)*1;

Operator are shown bellow from lowest to the highest precedence. Operators shown together on a line have the same precedence. Lets take a look:
:=
&#124;&#124;, OR, XOR
&#38;&#38;, AND
NOT
BETWEEN, CASE, WHEN, THEN, [...]]]></description>
			<content:encoded><![CDATA[<p>The precedence of operators determines the order of evaluation. To override this order and group terms explicity, use parentheses. Lets see the example below:</p>
<pre class="brush: sql;">
Select 6+2-4*1, (6+2-4)*1;
</pre>
<p>Operator are shown bellow from lowest to the highest precedence. Operators shown together on a line have the same precedence. Lets take a look:</p>
<p>:=<br />
||, OR, XOR<br />
&amp;&amp;, AND<br />
NOT<br />
BETWEEN, CASE, WHEN, THEN, ELSE<br />
=, &lt;=&gt;, &gt;=, &gt;, &lt;=, &lt;, &lt;&gt;, !=, IS, LIKE, REGEXP, IN<br />
|<br />
&amp;<br />
&lt;&lt;, &gt;&gt;<br />
-, +<br />
*, /, DIV, %, MOD<br />
^<br />
- (unary minus), ~ (unary bit inversion)<br />
!<br />
BINARY, COLLATE</p>
<p>Note: If the HIGH_NOT_PRECEDENCE SQL mode is enabled, the precedence of NOT is the same as that of the ! operator.</p>
]]></content:encoded>
			<wfw:commentRss>http://arimita.web.id/2010/06/operator-precedence/feed/</wfw:commentRss>
		<slash:comments>70</slash:comments>
		</item>
	</channel>
</rss>

