<?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 Tutorials &#187; Math Functions</title>
	<atom:link href="http://www.sqltutorials.net/category/functions/math-functions/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sqltutorials.net</link>
	<description>Learn database design and the SQL language.</description>
	<lastBuildDate>Sun, 20 Sep 2009 00:18:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>SQL SUM Function</title>
		<link>http://www.sqltutorials.net/functions/math-functions/sql-sum-function.html</link>
		<comments>http://www.sqltutorials.net/functions/math-functions/sql-sum-function.html#comments</comments>
		<pubDate>Sun, 20 Sep 2009 00:02:05 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Math Functions]]></category>
		<category><![CDATA[sql math functions]]></category>
		<category><![CDATA[sql max function]]></category>
		<category><![CDATA[tsql]]></category>

		<guid isPermaLink="false">http://www.sqltutorials.net/?p=63</guid>
		<description><![CDATA[The SUM function is used to calculate the total for a column. The syntax is: SELECT SUM(&#8220;column_name&#8221;) FROM &#8220;table_name&#8221; For example, if we want to get the sum of all sales from the following table, Store Sales Information Store Name Sales Atlanta $1500 Boston $250 LA $300 Dallas $700 we would type in SELECT SUM(Sales) [...]]]></description>
		<wfw:commentRss>http://www.sqltutorials.net/functions/math-functions/sql-sum-function.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL MIN Function</title>
		<link>http://www.sqltutorials.net/functions/math-functions/sql-min-function.html</link>
		<comments>http://www.sqltutorials.net/functions/math-functions/sql-min-function.html#comments</comments>
		<pubDate>Sat, 19 Sep 2009 23:58:22 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Math Functions]]></category>

		<guid isPermaLink="false">http://www.sqltutorials.net/?p=59</guid>
		<description><![CDATA[SQL uses the MIN function to find the maximum value in a column. The syntax for using the MIN function is: SELECT MIN(&#8220;column_name&#8221;) FROM &#8220;table_name&#8221; For example, if we want to get the lowest sales from the following table Store Sales Information Store Name Sales Atlanta $1500 Boston $250 LA $300 Dallas $700 type in [...]]]></description>
		<wfw:commentRss>http://www.sqltutorials.net/functions/math-functions/sql-min-function.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL MAX Function</title>
		<link>http://www.sqltutorials.net/functions/math-functions/sql-max-function.html</link>
		<comments>http://www.sqltutorials.net/functions/math-functions/sql-max-function.html#comments</comments>
		<pubDate>Sat, 19 Sep 2009 23:56:27 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Math Functions]]></category>
		<category><![CDATA[sql max function]]></category>
		<category><![CDATA[tsql]]></category>

		<guid isPermaLink="false">http://www.sqltutorials.net/?p=56</guid>
		<description><![CDATA[SQL uses the MAX function to find the maximum value in a column. The syntax for using the MAX function is: SELECT MAX(&#8220;column_name&#8221;) FROM &#8220;table_name&#8221; For example, if we want to get the highest sales from the following table, Store Sales Information Store Name Sales Atlanta $1500 Boston $250 LA $300 Dallas $700 we would [...]]]></description>
		<wfw:commentRss>http://www.sqltutorials.net/functions/math-functions/sql-max-function.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Count Function</title>
		<link>http://www.sqltutorials.net/functions/math-functions/sql-count-function.html</link>
		<comments>http://www.sqltutorials.net/functions/math-functions/sql-count-function.html#comments</comments>
		<pubDate>Sat, 19 Sep 2009 23:52:48 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Math Functions]]></category>

		<guid isPermaLink="false">http://www.sqltutorials.net/?p=50</guid>
		<description><![CDATA[Another arithmetic function is COUNT. This allows us to COUNT up the number of row in a certain table. The syntax is: SELECT COUNT(&#8220;column_name&#8221;) FROM &#8220;table_name&#8221; For example, if we want to find the number of store entries in our table, type: Store Sales Information Store Name Sales Atlanta $1500 Boston $250 LA $300 Dallas [...]]]></description>
		<wfw:commentRss>http://www.sqltutorials.net/functions/math-functions/sql-count-function.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
