﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>博客园-yide-最新评论</title><link>http://www.cnblogs.com/yide/CommentsRSS.aspx</link><description /><language>zh-cn</language><pubDate>Tue, 20 Mar 2007 02:31:14 GMT</pubDate><lastBuildDate>Tue, 20 Mar 2007 02:31:14 GMT</lastBuildDate><generator>cnblogs</generator><item><title>re: 用delphi写excel文件</title><link>http://www.cnblogs.com/yide/archive/2008/10/09/680772.html#1335943</link><dc:creator>shilei</dc:creator><author>shilei</author><pubDate>Thu, 09 Oct 2008 06:43:33 GMT</pubDate><guid>http://www.cnblogs.com/yide/archive/2008/10/09/680772.html#1335943</guid><description><![CDATA[    您写的很好，帮我解决了工作中的问题，十分感谢。<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/yide/" target="_blank">shilei</a> 2008-10-09 14:43 <a href="http://www.cnblogs.com/yide/archive/2008/10/09/680772.html#1335943#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 用delphi写excel文件</title><link>http://www.cnblogs.com/yide/archive/2008/07/08/680772.html#1248741</link><dc:creator>LDC</dc:creator><author>LDC</author><pubDate>Tue, 08 Jul 2008 08:44:59 GMT</pubDate><guid>http://www.cnblogs.com/yide/archive/2008/07/08/680772.html#1248741</guid><description><![CDATA[看<br><a href="http://msdn.microsoft.com/zh-cn/library/microsoft.office.interop.excel.xlcharttype.aspx" target="_new" rel="nofollow">http://msdn.microsoft.com/zh-cn/library/microsoft.office.interop.excel.xlcharttype.aspx</a><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/yide/" target="_blank">LDC</a> 2008-07-08 16:44 <a href="http://www.cnblogs.com/yide/archive/2008/07/08/680772.html#1248741#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 用delphi写excel文件</title><link>http://www.cnblogs.com/yide/archive/2008/02/22/680772.html#1077664</link><dc:creator>chelen</dc:creator><author>chelen</author><pubDate>Fri, 22 Feb 2008 06:51:00 GMT</pubDate><guid>http://www.cnblogs.com/yide/archive/2008/02/22/680772.html#1077664</guid><description><![CDATA[謝謝你的文章. <br>終于找到了一個可以生成Excel圖型的例子, 在此深表感謝!<br>但有些不明白是:<br>1.如何知道 xl3DColumnClustered 是立體叢集直條圖;<br>2.如何知道ChartObjects有哪些屬性.<br>請問有哪些資料可以參考嗎?<br>希望不憫賜教.<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/yide/" target="_blank">chelen</a> 2008-02-22 14:51 <a href="http://www.cnblogs.com/yide/archive/2008/02/22/680772.html#1077664#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Table查詢 不完全相等問題 </title><link>http://www.cnblogs.com/yide/archive/2006/01/19/315870.html#320135</link><dc:creator>Yin Peng</dc:creator><author>Yin Peng</author><pubDate>Thu, 19 Jan 2006 03:12:00 GMT</pubDate><guid>http://www.cnblogs.com/yide/archive/2006/01/19/315870.html#320135</guid><description><![CDATA[SELECT key3, SUM(qty3) AS qty3<br>	FROM (<br>		SELECT key1 AS key3, qty1 AS qty3<br>			FROM table1<br>		UNION<br>		SELECT key2 AS key3, qty2 AS qty3<br>			FROM table2<br>		) A<br>	GROUP BY key3<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/yide/" target="_blank">Yin Peng</a> 2006-01-19 11:12 <a href="http://www.cnblogs.com/yide/archive/2006/01/19/315870.html#320135#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 怎樣在查詢結果中加入子序號  ?</title><link>http://www.cnblogs.com/yide/archive/2006/01/19/316648.html#320119</link><dc:creator>Yin Peng</dc:creator><author>Yin Peng</author><pubDate>Thu, 19 Jan 2006 02:59:00 GMT</pubDate><guid>http://www.cnblogs.com/yide/archive/2006/01/19/316648.html#320119</guid><description><![CDATA[我记得多年前在用SQL Server 6.5时只需要两个局部变量和一条SELECT语句就可以了，但是我用同样的方法在SQL Server 2005 Express中试的时候却不成功，错误提示是赋值和取数据不可以混合在一条SELECT语句中。<br><br>下面这一段在SQL Server 2005 Express中试过是可行的。使用了一个临时表。<br><br>DECLARE @n int<br>DECLARE @last nvarchar(10)  --定义成与key2相同的类型<br><br>SELECT key1, key2, time, 0 AS subseq<br>    INTO #tmptable<br>    FROM testtable<br>    ORDER BY key2<br><br>UPDATE #tmptable<br>    SET<br>        @n = CASE WHEN @last = key2 THEN @n+1 ELSE 1 END,<br>        subseq = @n,<br>        @last = key2<br><br>SELECT * FROM #tmptable<br><br>DROP TABLE #tmptable<br><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/yide/" target="_blank">Yin Peng</a> 2006-01-19 10:59 <a href="http://www.cnblogs.com/yide/archive/2006/01/19/316648.html#320119#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Table查詢 不完全相等問題 </title><link>http://www.cnblogs.com/yide/archive/2006/01/13/315870.html#316451</link><dc:creator>----</dc:creator><author>----</author><pubDate>Fri, 13 Jan 2006 00:41:00 GMT</pubDate><guid>http://www.cnblogs.com/yide/archive/2006/01/13/315870.html#316451</guid><description><![CDATA[謝謝 , 這個方法我試過 ,不知道有沒有其他方法 .<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/yide/" target="_blank">----</a> 2006-01-13 08:41 <a href="http://www.cnblogs.com/yide/archive/2006/01/13/315870.html#316451#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Table查詢 不完全相等問題 </title><link>http://www.cnblogs.com/yide/archive/2006/01/12/315870.html#315998</link><dc:creator>feiyun0112</dc:creator><author>feiyun0112</author><pubDate>Thu, 12 Jan 2006 07:15:00 GMT</pubDate><guid>http://www.cnblogs.com/yide/archive/2006/01/12/315870.html#315998</guid><description><![CDATA[select key1 , qty1 from T1 where key1 not in (select key2 from T2)<br>union<br>select key2 as key 1 , qty2  as qty1 from T2 where key2 not in (select key1 from T1)<br>union<br>select key1 , qty1+qty2  as qty1 from T2,T1 where T2.key2=T1key1<br>order by key1<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/yide/" target="_blank">feiyun0112</a> 2006-01-12 15:15 <a href="http://www.cnblogs.com/yide/archive/2006/01/12/315870.html#315998#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>
