<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Introduction to Statistical Functions &#8211; VAR, STDEVP, STDEV, VARP</title>
	<atom:link href="http://blog.sqlauthority.com/2008/01/20/sql-server-introduction-to-statistical-functions-var-stdevp-stdev-varp/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/01/20/sql-server-introduction-to-statistical-functions-var-stdevp-stdev-varp/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 10 Feb 2012 04:45:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: jessa</title>
		<link>http://blog.sqlauthority.com/2008/01/20/sql-server-introduction-to-statistical-functions-var-stdevp-stdev-varp/#comment-177882</link>
		<dc:creator><![CDATA[jessa]]></dc:creator>
		<pubDate>Wed, 12 Oct 2011 08:46:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2008/01/20/sql-server-introduction-to-statistical-functions-var-stdevp-stdev-varp/#comment-177882</guid>
		<description><![CDATA[hi!! i hope u could help me..

i need to know the statistical fucvtion in choosing course in college??

tnx!!]]></description>
		<content:encoded><![CDATA[<p>hi!! i hope u could help me..</p>
<p>i need to know the statistical fucvtion in choosing course in college??</p>
<p>tnx!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jessa</title>
		<link>http://blog.sqlauthority.com/2008/01/20/sql-server-introduction-to-statistical-functions-var-stdevp-stdev-varp/#comment-177880</link>
		<dc:creator><![CDATA[jessa]]></dc:creator>
		<pubDate>Wed, 12 Oct 2011 08:46:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2008/01/20/sql-server-introduction-to-statistical-functions-var-stdevp-stdev-varp/#comment-177880</guid>
		<description><![CDATA[hi!! i hope u could help me..

i need to know  the statistical in choosing course in college?? 


tnx!!]]></description>
		<content:encoded><![CDATA[<p>hi!! i hope u could help me..</p>
<p>i need to know  the statistical in choosing course in college?? </p>
<p>tnx!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oleg</title>
		<link>http://blog.sqlauthority.com/2008/01/20/sql-server-introduction-to-statistical-functions-var-stdevp-stdev-varp/#comment-159063</link>
		<dc:creator><![CDATA[Oleg]]></dc:creator>
		<pubDate>Thu, 18 Aug 2011 16:15:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2008/01/20/sql-server-introduction-to-statistical-functions-var-stdevp-stdev-varp/#comment-159063</guid>
		<description><![CDATA[Hi Pinal Dave,

Here is another sample to explain relationships between SQL Server statistic functions:

USE AdventureWorks;
GO
SELECT STDEVP(Bonus) &#039;Standard Deviation for the Population&#039;,
STDEV(Bonus) &#039;Standard Deviation&#039;,
VAR(Bonus) &#039;Variance&#039;,
STDEV(Bonus)* STDEV(Bonus) &#039;VAR via STDEV&#039;,
VARP(Bonus) &#039;Variance for the Population&#039;,
STDEVP(Bonus)* STDEVP(Bonus) &#039;VARP via STDEVP&#039;,
VAR(Bonus)*(COUNT(Bonus)-1)/COUNT(Bonus) &#039;VARP via VAR &#039;
FROM Sales.SalesPerson;
GO
Thanks
Oleg]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal Dave,</p>
<p>Here is another sample to explain relationships between SQL Server statistic functions:</p>
<p>USE AdventureWorks;<br />
GO<br />
SELECT STDEVP(Bonus) &#8216;Standard Deviation for the Population&#8217;,<br />
STDEV(Bonus) &#8216;Standard Deviation&#8217;,<br />
VAR(Bonus) &#8216;Variance&#8217;,<br />
STDEV(Bonus)* STDEV(Bonus) &#8216;VAR via STDEV&#8217;,<br />
VARP(Bonus) &#8216;Variance for the Population&#8217;,<br />
STDEVP(Bonus)* STDEVP(Bonus) &#8216;VARP via STDEVP&#8217;,<br />
VAR(Bonus)*(COUNT(Bonus)-1)/COUNT(Bonus) &#8216;VARP via VAR &#8216;<br />
FROM Sales.SalesPerson;<br />
GO<br />
Thanks<br />
Oleg</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: manish</title>
		<link>http://blog.sqlauthority.com/2008/01/20/sql-server-introduction-to-statistical-functions-var-stdevp-stdev-varp/#comment-41293</link>
		<dc:creator><![CDATA[manish]]></dc:creator>
		<pubDate>Mon, 04 Aug 2008 12:24:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2008/01/20/sql-server-introduction-to-statistical-functions-var-stdevp-stdev-varp/#comment-41293</guid>
		<description><![CDATA[hi pinal,
 

i know about this function but my requirement is some what complicated 

i have one table which include two thing one is district and the county now i want all county list not records group by district.

ex 

District1
 coun1, coun2, coun3

District2 
 coun1, coun2, coun3

So how can i do such thing 
:) manish (:]]></description>
		<content:encoded><![CDATA[<p>hi pinal,</p>
<p>i know about this function but my requirement is some what complicated </p>
<p>i have one table which include two thing one is district and the county now i want all county list not records group by district.</p>
<p>ex </p>
<p>District1<br />
 coun1, coun2, coun3</p>
<p>District2<br />
 coun1, coun2, coun3</p>
<p>So how can i do such thing<br />
:) manish (:</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daudi</title>
		<link>http://blog.sqlauthority.com/2008/01/20/sql-server-introduction-to-statistical-functions-var-stdevp-stdev-varp/#comment-38803</link>
		<dc:creator><![CDATA[Daudi]]></dc:creator>
		<pubDate>Mon, 26 May 2008 17:30:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2008/01/20/sql-server-introduction-to-statistical-functions-var-stdevp-stdev-varp/#comment-38803</guid>
		<description><![CDATA[Hi,
I want to summarize by the Mode on some categorical data. 
I want to show the most common type of family structure (single parent, nuclear, extended etc) by village.

Any help please.]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
I want to summarize by the Mode on some categorical data.<br />
I want to show the most common type of family structure (single parent, nuclear, extended etc) by village.</p>
<p>Any help please.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sandeep</title>
		<link>http://blog.sqlauthority.com/2008/01/20/sql-server-introduction-to-statistical-functions-var-stdevp-stdev-varp/#comment-33209</link>
		<dc:creator><![CDATA[Sandeep]]></dc:creator>
		<pubDate>Wed, 23 Jan 2008 08:12:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2008/01/20/sql-server-introduction-to-statistical-functions-var-stdevp-stdev-varp/#comment-33209</guid>
		<description><![CDATA[hi,

plz write something about:

what are statistics and what is the use of it? plz help

warm regards
Sandeep (noida)]]></description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>plz write something about:</p>
<p>what are statistics and what is the use of it? plz help</p>
<p>warm regards<br />
Sandeep (noida)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Milton</title>
		<link>http://blog.sqlauthority.com/2008/01/20/sql-server-introduction-to-statistical-functions-var-stdevp-stdev-varp/#comment-33196</link>
		<dc:creator><![CDATA[Milton]]></dc:creator>
		<pubDate>Tue, 22 Jan 2008 16:59:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2008/01/20/sql-server-introduction-to-statistical-functions-var-stdevp-stdev-varp/#comment-33196</guid>
		<description><![CDATA[Hi, Can You help me with my little questions?

I need to know if with a statistical funtion I can to know which tables are not used in a database.

Thanks

Milton]]></description>
		<content:encoded><![CDATA[<p>Hi, Can You help me with my little questions?</p>
<p>I need to know if with a statistical funtion I can to know which tables are not used in a database.</p>
<p>Thanks</p>
<p>Milton</p>
]]></content:encoded>
	</item>
</channel>
</rss>

