<?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"
	>
<channel>
	<title>Comments on: Selecting Random Records With SQL</title>
	<atom:link href="http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/</link>
	<description></description>
	<pubDate>Wed, 08 Sep 2010 10:47:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: SQL &#8211; Select Random Records From Table &#171; Eureka!</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11240</link>
		<dc:creator>SQL &#8211; Select Random Records From Table &#171; Eureka!</dc:creator>
		<pubDate>Fri, 09 Jul 2010 16:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11240</guid>
		<description>[...] The number of return records depends on the LIMIT value and you could find other database SQL and the tests details at CarlJ.ca &#8211; Selecting Random Records With SQL. [...]</description>
		<content:encoded><![CDATA[<p>[...] The number of return records depends on the LIMIT value and you could find other database SQL and the tests details at CarlJ.ca &#8211; Selecting Random Records With SQL. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kirk</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11206</link>
		<dc:creator>Kirk</dc:creator>
		<pubDate>Sat, 30 Jan 2010 14:29:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11206</guid>
		<description>I find it incredible that I can not find a way good way to select random records from a DB2 table by a record pointer of some type.  This would be necessary for large tables. Those in the millions of records.  Selecting by a record pointer would eliminate the need of dumping the entire table to just get a sampling.</description>
		<content:encoded><![CDATA[<p>I find it incredible that I can not find a way good way to select random records from a DB2 table by a record pointer of some type.  This would be necessary for large tables. Those in the millions of records.  Selecting by a record pointer would eliminate the need of dumping the entire table to just get a sampling.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bharat Mane</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11184</link>
		<dc:creator>Bharat Mane</dc:creator>
		<pubDate>Thu, 10 Sep 2009 06:42:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11184</guid>
		<description>This is what, I was looking for, and it saved my few hours of efforts.

Thank you so much</description>
		<content:encoded><![CDATA[<p>This is what, I was looking for, and it saved my few hours of efforts.</p>
<p>Thank you so much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shashank</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11182</link>
		<dc:creator>shashank</dc:creator>
		<pubDate>Mon, 31 Aug 2009 14:46:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11182</guid>
		<description>good info. i NEWID() is new to me. thanks for the post. i am using the SQL is one of my projects now.</description>
		<content:encoded><![CDATA[<p>good info. i NEWID() is new to me. thanks for the post. i am using the SQL is one of my projects now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: samantha</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11181</link>
		<dc:creator>samantha</dc:creator>
		<pubDate>Fri, 07 Aug 2009 07:55:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11181</guid>
		<description>Dear all,

I have this problem in mysql database trigger.

I have two tables namely messagein and messageout.

I want to update messageout table when a message received to messagein table.
 So I wrote a database trigger in mysql.
I am using wamp-php admin,
Code as follows,

create trigger autoreply after  insert on ozekimessagein
FOR each row
begin
DECLARE tel VARCHAR(30);
SELECT @tel=sender FROM ozekimessagein ORDER BY sender DESC limit 1;
INSERT INTO ozekimessageout(receiver,msg,statuss) VALUES (@tel,'Thank you for the
message','send');
end

But when it runs give an mysql server version error.

Can you help me to resolve this matter.


Regards to all
Samantha</description>
		<content:encoded><![CDATA[<p>Dear all,</p>
<p>I have this problem in mysql database trigger.</p>
<p>I have two tables namely messagein and messageout.</p>
<p>I want to update messageout table when a message received to messagein table.<br />
 So I wrote a database trigger in mysql.<br />
I am using wamp-php admin,<br />
Code as follows,</p>
<p>create trigger autoreply after  insert on ozekimessagein<br />
FOR each row<br />
begin<br />
DECLARE tel VARCHAR(30);<br />
SELECT @tel=sender FROM ozekimessagein ORDER BY sender DESC limit 1;<br />
INSERT INTO ozekimessageout(receiver,msg,statuss) VALUES (@tel,&#8217;Thank you for the<br />
message&#8217;,&#8217;send&#8217;);<br />
end</p>
<p>But when it runs give an mysql server version error.</p>
<p>Can you help me to resolve this matter.</p>
<p>Regards to all<br />
Samantha</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carl J</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11180</link>
		<dc:creator>Carl J</dc:creator>
		<pubDate>Wed, 29 Jul 2009 11:01:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11180</guid>
		<description>Not a problem, glad I could help :)</description>
		<content:encoded><![CDATA[<p>Not a problem, glad I could help <img src='http://www.carlj.ca/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Poonam</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11178</link>
		<dc:creator>Poonam</dc:creator>
		<pubDate>Wed, 29 Jul 2009 10:42:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11178</guid>
		<description>Danilo Celic 

Your solution worked for me. Thanks a lot</description>
		<content:encoded><![CDATA[<p>Danilo Celic </p>
<p>Your solution worked for me. Thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carl J</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11173</link>
		<dc:creator>Carl J</dc:creator>
		<pubDate>Mon, 06 Apr 2009 13:00:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11173</guid>
		<description>Hi Gary, the problem that you're experiencing, is the same problem that I was having above. What may work (and I can't test from here right) is to change your Rnd() in the ORDER BY, and use a random number instead of the Camp_Id, which the Id never changes. Instead you could generate a random number (or use Ticks) in ASP and use that. 
"ORDER BY Rnd(Campaign.Camp_ID)" becomes "ORDER BY Rnd(" &#038; RandomASPGeneratedNumber &#038;")"
Basically, to create a random number, you need a random number</description>
		<content:encoded><![CDATA[<p>Hi Gary, the problem that you&#8217;re experiencing, is the same problem that I was having above. What may work (and I can&#8217;t test from here right) is to change your Rnd() in the ORDER BY, and use a random number instead of the Camp_Id, which the Id never changes. Instead you could generate a random number (or use Ticks) in ASP and use that.<br />
&#8220;ORDER BY Rnd(Campaign.Camp_ID)&#8221; becomes &#8220;ORDER BY Rnd(&#8221; &#038; RandomASPGeneratedNumber &#038;&#8221;)&#8221;<br />
Basically, to create a random number, you need a random number</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gary</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11172</link>
		<dc:creator>Gary</dc:creator>
		<pubDate>Mon, 06 Apr 2009 12:50:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11172</guid>
		<description>Im using access with a classic ASP front end...on MS Access the query works great:

SELECT TOP 1 Campaign.Camp_ID, Companies.AD_ID, Campaign.CampURL
FROM Companies INNER JOIN (Campaign INNER JOIN CampStats ON Campaign.Camp_ID = CampStats.CampaignID) ON Companies.AD_ID = Campaign.Co_Parent
WHERE (((Campaign.CampActive)='Yes'))
ORDER BY Rnd(Campaign.Camp_ID);

When this is ran through my ASP code, I get the same freaking ad every single time...it's the ad with the highest Camp_ID though..

thoughts?</description>
		<content:encoded><![CDATA[<p>Im using access with a classic ASP front end&#8230;on MS Access the query works great:</p>
<p>SELECT TOP 1 Campaign.Camp_ID, Companies.AD_ID, Campaign.CampURL<br />
FROM Companies INNER JOIN (Campaign INNER JOIN CampStats ON Campaign.Camp_ID = CampStats.CampaignID) ON Companies.AD_ID = Campaign.Co_Parent<br />
WHERE (((Campaign.CampActive)=&#8217;Yes&#8217;))<br />
ORDER BY Rnd(Campaign.Camp_ID);</p>
<p>When this is ran through my ASP code, I get the same freaking ad every single time&#8230;it&#8217;s the ad with the highest Camp_ID though..</p>
<p>thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eduard Gamonal &#187; Blog Archive &#187; What «random» means in Microsoft</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11151</link>
		<dc:creator>Eduard Gamonal &#187; Blog Archive &#187; What «random» means in Microsoft</dc:creator>
		<pubDate>Tue, 10 Mar 2009 18:26:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11151</guid>
		<description>[...] it didn&#8217;t. I tried a few more lines, with no success. In CarlJ.ca I got an [...]</description>
		<content:encoded><![CDATA[<p>[...] it didn&#8217;t. I tried a few more lines, with no success. In CarlJ.ca I got an [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlj</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11007</link>
		<dc:creator>carlj</dc:creator>
		<pubDate>Fri, 05 Dec 2008 02:39:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11007</guid>
		<description>Hey JWhite,

Thanks for the link. I'll try it out (not that I don't believe the article) as soon as I can. I've been wanting to get around to doing an update on Access, with something similar.</description>
		<content:encoded><![CDATA[<p>Hey JWhite,</p>
<p>Thanks for the link. I&#8217;ll try it out (not that I don&#8217;t believe the article) as soon as I can. I&#8217;ve been wanting to get around to doing an update on Access, with something similar.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jwhite</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11006</link>
		<dc:creator>jwhite</dc:creator>
		<pubDate>Fri, 05 Dec 2008 01:21:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-11006</guid>
		<description>For MS Access, see: http://www.databasedev.co.uk/random_query.html</description>
		<content:encoded><![CDATA[<p>For MS Access, see: <a href="http://www.databasedev.co.uk/random_query.html" rel="nofollow">http://www.databasedev.co.uk/random_query.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nate</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-10991</link>
		<dc:creator>Nate</dc:creator>
		<pubDate>Sat, 06 Sep 2008 10:22:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-10991</guid>
		<description>Awesome... thank you for this very detailed description.</description>
		<content:encoded><![CDATA[<p>Awesome&#8230; thank you for this very detailed description.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carl J &#187; This Day in History: September 2, 2008</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-10990</link>
		<dc:creator>Carl J &#187; This Day in History: September 2, 2008</dc:creator>
		<pubDate>Thu, 04 Sep 2008 23:59:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-10990</guid>
		<description>[...] Selecting Random Records with SQL [...]</description>
		<content:encoded><![CDATA[<p>[...] Selecting Random Records with SQL [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Will</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-10989</link>
		<dc:creator>Will</dc:creator>
		<pubDate>Fri, 29 Aug 2008 08:43:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-10989</guid>
		<description>I'm considering using this for random pagination (on Postgres):

SELECT * 
FROM records
ORDER BY (recordID % 5)

In the above query 5 would either be the hour or day, so the records would be in a different order every hour or day. The drawbacks are obviously it's not frequent randomisation and if a user is paging just before the changeover of hour or day, they will probably see duplicate records.</description>
		<content:encoded><![CDATA[<p>I&#8217;m considering using this for random pagination (on Postgres):</p>
<p>SELECT *<br />
FROM records<br />
ORDER BY (recordID % 5)</p>
<p>In the above query 5 would either be the hour or day, so the records would be in a different order every hour or day. The drawbacks are obviously it&#8217;s not frequent randomisation and if a user is paging just before the changeover of hour or day, they will probably see duplicate records.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carl J</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-10986</link>
		<dc:creator>Carl J</dc:creator>
		<pubDate>Mon, 18 Aug 2008 10:27:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-10986</guid>
		<description>Hey Tim,

That would be a bit difficult to do, because everytime you ask SQL for a new page, you're asking it to select a page of random records. So whats going to stop page 2 from having some of the same records as page 1?

Now, if you want to sort the records randomly, then page through that list, then thats a different story.</description>
		<content:encoded><![CDATA[<p>Hey Tim,</p>
<p>That would be a bit difficult to do, because everytime you ask SQL for a new page, you&#8217;re asking it to select a page of random records. So whats going to stop page 2 from having some of the same records as page 1?</p>
<p>Now, if you want to sort the records randomly, then page through that list, then thats a different story.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-10985</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Mon, 18 Aug 2008 08:25:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-10985</guid>
		<description>Hi,

Do you have any idea how to implement selecting random records together with sql paging?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Do you have any idea how to implement selecting random records together with sql paging?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Selecting a random row from a table in mysql &#124; Prashanth Ellina</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-4870</link>
		<dc:creator>Selecting a random row from a table in mysql &#124; Prashanth Ellina</dc:creator>
		<pubDate>Tue, 08 Apr 2008 16:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-4870</guid>
		<description>[...] http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/" rel="nofollow">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlj</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-3692</link>
		<dc:creator>carlj</dc:creator>
		<pubDate>Wed, 19 Mar 2008 11:44:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-3692</guid>
		<description>I wouldn't consider myself a 'genius', I only did what you probably did, and Googled for it.

Glad I could help though.</description>
		<content:encoded><![CDATA[<p>I wouldn&#8217;t consider myself a &#8216;genius&#8217;, I only did what you probably did, and Googled for it.</p>
<p>Glad I could help though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rapture</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-3358</link>
		<dc:creator>Rapture</dc:creator>
		<pubDate>Tue, 11 Mar 2008 07:56:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-3358</guid>
		<description>Dude!!! You are a genious. You just saved me 40 lines of code just by one line 'ORDER BY NEWID()'</description>
		<content:encoded><![CDATA[<p>Dude!!! You are a genious. You just saved me 40 lines of code just by one line &#8216;ORDER BY NEWID()&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carl J &#187; February 2008 Stats</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-3107</link>
		<dc:creator>Carl J &#187; February 2008 Stats</dc:creator>
		<pubDate>Sat, 01 Mar 2008 17:09:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-3107</guid>
		<description>[...] Selecting Random Records With SQL [...]</description>
		<content:encoded><![CDATA[<p>[...] Selecting Random Records With SQL [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlj</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-2747</link>
		<dc:creator>carlj</dc:creator>
		<pubDate>Mon, 11 Feb 2008 15:24:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-2747</guid>
		<description>Here you go ...

SELECT *
FROM Table1
WHERE PrimaryID &gt; = 
(
	SELECT TOP 1 PrimaryID
	FROM Table1
	ORDER BY NEWID()
)</description>
		<content:encoded><![CDATA[<p>Here you go &#8230;</p>
<p>SELECT *<br />
FROM Table1<br />
WHERE PrimaryID > =<br />
(<br />
	SELECT TOP 1 PrimaryID<br />
	FROM Table1<br />
	ORDER BY NEWID()<br />
)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlj</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-2746</link>
		<dc:creator>carlj</dc:creator>
		<pubDate>Mon, 11 Feb 2008 15:19:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-2746</guid>
		<description>Hi Mehzabee,

Off of the top of my head, If you are using MS SQL 2005, I would suggest picking a random number in code (do a SELECT Count() to get the max number of rows), then select all records that are equal to or greater than that random number using MS SQL 2005's rownum.

If that doesn't work for you, then do two select statements. 

SELECT TOP 1 [PrimaryID]
FROM Table1
ORDER BY NEWID()

Store the [PrimaryID] and then ...

SELECT * FROM
Table1
WHERE [PrimaryID] &gt;= x

where 'x' is the PrimaryID from the first statement.

I have another idea, and will post it a bit later.</description>
		<content:encoded><![CDATA[<p>Hi Mehzabee,</p>
<p>Off of the top of my head, If you are using MS SQL 2005, I would suggest picking a random number in code (do a SELECT Count() to get the max number of rows), then select all records that are equal to or greater than that random number using MS SQL 2005&#8217;s rownum.</p>
<p>If that doesn&#8217;t work for you, then do two select statements. </p>
<p>SELECT TOP 1 [PrimaryID]<br />
FROM Table1<br />
ORDER BY NEWID()</p>
<p>Store the [PrimaryID] and then &#8230;</p>
<p>SELECT * FROM<br />
Table1<br />
WHERE [PrimaryID] >= x</p>
<p>where &#8216;x&#8217; is the PrimaryID from the first statement.</p>
<p>I have another idea, and will post it a bit later.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mehzabeen</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-2732</link>
		<dc:creator>Mehzabeen</dc:creator>
		<pubDate>Mon, 11 Feb 2008 05:39:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-2732</guid>
		<description>Hi,

This info was a bit useful for me, however, my requirement was a bit different from this.

That is I need to generate the random records in MSSQL where in the next random record which is generated should be according to the user's choice (ie., if a record 4 is generated, then its very next record ie., 5 should come next, and suppose if 8 is generated, then its very next record that is 9 should come next).

If there is any solution for that please do let me know.

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>This info was a bit useful for me, however, my requirement was a bit different from this.</p>
<p>That is I need to generate the random records in MSSQL where in the next random record which is generated should be according to the user&#8217;s choice (ie., if a record 4 is generated, then its very next record ie., 5 should come next, and suppose if 8 is generated, then its very next record that is 9 should come next).</p>
<p>If there is any solution for that please do let me know.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2007-12-21 &#171; Bijay Rungta&#8217;s Weblog</title>
		<link>http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-1783</link>
		<dc:creator>links for 2007-12-21 &#171; Bijay Rungta&#8217;s Weblog</dc:creator>
		<pubDate>Fri, 21 Dec 2007 00:37:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2007/12/16/selecting-random-records-with-sql/#comment-1783</guid>
		<description>[...] Carl J » Selecting Random Records With SQL (tags: mysql sql webdesign random howto tips php development Will_Need_It) [...]</description>
		<content:encoded><![CDATA[<p>[...] Carl J » Selecting Random Records With SQL (tags: mysql sql webdesign random howto tips php development Will_Need_It) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
