<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[weinideai的专栏]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/weinideai</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; weinideai]]></copyright><item><title><![CDATA[算法复杂度]]></title><link>https://blog.csdn.net/weinideai/article/details/4801109</link><guid>https://blog.csdn.net/weinideai/article/details/4801109</guid><author>weinideai</author><pubDate>Thu, 12 Nov 2009 09:43:00 +0800</pubDate><description><![CDATA[好文章就要收藏，学习，文章讲的很精辟！计算机最核心的资源就是CPU与存储器，任何程序的运行都离不开二者。任何程序的运行都要进行计算，这就会消耗CPU；任何程序的运行也都需要进行数据的处理，CPU中是无法存储数据的，必须借助存储器来保存数据。如果程序的CPU消耗过大会导致程序的运行时间变长；如果占用的存储空间太大会使得系统能够运行的程序数量变少。因此如何保证程序占用的CPU和占用的存储空间都较小]]></description><category></category></item><item><title><![CDATA[SQL查询逻辑]]></title><link>https://blog.csdn.net/weinideai/article/details/4706022</link><guid>https://blog.csdn.net/weinideai/article/details/4706022</guid><author>weinideai</author><pubDate>Tue, 20 Oct 2009 23:36:00 +0800</pubDate><description><![CDATA[SQL特征：第一、面向集合的编程思想，第二、三值逻辑（TRUE FALSE UNKOWN），第三、查询元素的逻辑处理次序。查询逻辑：(8)  SELECT (9) DISTINCT (11) TOP_specification> select_list>(1)  FROM left_table>(3)    join_type> JOIN right_table>(2)      ON]]></description><category></category></item><item><title><![CDATA[sql类型转换函数cast和convert]]></title><link>https://blog.csdn.net/weinideai/article/details/4696846</link><guid>https://blog.csdn.net/weinideai/article/details/4696846</guid><author>weinideai</author><pubDate>Mon, 19 Oct 2009 10:08:00 +0800</pubDate><description><![CDATA[简介：        数据类型转换可以通过CAST()和CONVERT()函数来实现。大多数情况下，这两个函数是重叠的，它们反映了SQL语言的演化历史。这两个函数的功能相似，不过它们的语法不同。虽然并非所有类型的值都能转变为其他数据类型，但总的来说，任何可以转换的值都可以用简单的函数实现转换。 语法：       CAST ( expression AS data_type )  ]]></description><category></category></item><item><title><![CDATA[js.window属性及方法]]></title><link>https://blog.csdn.net/weinideai/article/details/4428553</link><guid>https://blog.csdn.net/weinideai/article/details/4428553</guid><author>weinideai</author><pubDate>Sun, 09 Aug 2009 20:03:00 +0800</pubDate><description><![CDATA[window.opener.location.reload()     这个方法在有些IE浏览器（比如安全设置高）的情况下，会弹出一个确认对话框，提示是不是要重新再刷新一次页面，这个方法替换成了window.opener.location.href=window.opener.location.href;就不会出现那样的问题了。 window.opener.location.href只]]></description><category></category></item><item><title><![CDATA[sql语句(二)]]></title><link>https://blog.csdn.net/weinideai/article/details/4397472</link><guid>https://blog.csdn.net/weinideai/article/details/4397472</guid><author>weinideai</author><pubDate>Fri, 31 Jul 2009 15:02:00 +0800</pubDate><description><![CDATA[1 ALL、DISTINCT、DISTINCTROW、TOP谓词　　　　(1) ALL 返回满足SQL语句条件的所有记录。如果没有指明这个谓词，默认为ALL。　　　　 例：SELECT ALL FirstName,LastName　　        FROM　　　Employees　　　(2) DISTINCT 如果有多个记录的选择字段的数据相同，只返回一个。　　　　(3) DISTINCTR]]></description><category></category></item><item><title><![CDATA[背完100个句子记下7000个单词]]></title><link>https://blog.csdn.net/weinideai/article/details/4391646</link><guid>https://blog.csdn.net/weinideai/article/details/4391646</guid><author>weinideai</author><pubDate>Wed, 29 Jul 2009 18:32:00 +0800</pubDate><description><![CDATA[1. Typical of the grassland dwellers of the continent is the American antelope, or pronghorn. 1.美洲羚羊，或称叉角羚，是该大陆典型的草原动物。 2. Of the millions who saw Haley’s comet in 1986, how many people will l]]></description><category></category></item><item><title><![CDATA[Server.MapPath详解]]></title><link>https://blog.csdn.net/weinideai/article/details/4337141</link><guid>https://blog.csdn.net/weinideai/article/details/4337141</guid><author>weinideai</author><pubDate>Fri, 10 Jul 2009 11:06:00 +0800</pubDate><description><![CDATA[语法：Server.Mappath(path)                           //path为你要指定的路径 用途：将path指定的虚拟路径转化为实际路径,参数path必须为虚拟路径，否则将出错！范例： 1)Server.Mappth("page.aspx")       //找出页面page.aspx的实际路径2)Server.Mappth("/")     ]]></description><category></category></item><item><title><![CDATA[从csdn论坛学sql--1]]></title><link>https://blog.csdn.net/weinideai/article/details/4292703</link><guid>https://blog.csdn.net/weinideai/article/details/4292703</guid><author>weinideai</author><pubDate>Tue, 23 Jun 2009 20:58:00 +0800</pubDate><description><![CDATA[sql语句写法一：select id, name from ( select 1 as id, new as name    UNION  select 2 as id, dealing as name   UNION  select 3 as id, shipped as name) t--加个别名，子查询结果作为表要加别名解释：select * from (]]></description><category></category></item><item><title><![CDATA[十大爆笑中式英语]]></title><link>https://blog.csdn.net/weinideai/article/details/4198508</link><guid>https://blog.csdn.net/weinideai/article/details/4198508</guid><author>weinideai</author><pubDate>Mon, 18 May 2009 16:36:00 +0800</pubDate><description><![CDATA[How are you ? How old are you? 怎么是你，怎么老是你？You have seed. I will give you some color to see see. Brothers！Together up! 你有种，我要给你点颜色瞧瞧，兄弟们，一起上！Dragon born dragon, chicken born chicken, mouse"s son ]]></description><category></category></item><item><title><![CDATA[搞清top、postop、scrolltop、scrollHeight、offsetHeight]]></title><link>https://blog.csdn.net/weinideai/article/details/4044302</link><guid>https://blog.csdn.net/weinideai/article/details/4044302</guid><author>weinideai</author><pubDate>Thu, 02 Apr 2009 17:36:00 +0800</pubDate><description><![CDATA[1. top此属性仅仅在对象的定位(position)属性被设置时可用。否则，此属性设置会被忽略。div style="background-color:red; position:absolute; width:100px; height:100px;">p style="background-color:silver; position:absolute; top:-5px;">测]]></description><category></category></item><item><title><![CDATA[js.offsetParent属性 ]]></title><link>https://blog.csdn.net/weinideai/article/details/4042315</link><guid>https://blog.csdn.net/weinideai/article/details/4042315</guid><author>weinideai</author><pubDate>Thu, 02 Apr 2009 00:06:00 +0800</pubDate><description><![CDATA[ 参考：offsetParent属性返回一个对象的引用，这个对象是距离调用offsetParent的元素最近的（在包含层次中最靠近的），并且是已进行过CSS定位的容器元素。 如果这个容器元素未进行CSS定位, 则offsetParent属性的取值为根元素(在标准兼容模式下为html元素；在怪异呈现模式下为body元素)的引用。 当容器元素的style.display 被设置为 "none"时（]]></description><category></category></item><item><title><![CDATA[彻底搞清JavaScript的变量作用域]]></title><link>https://blog.csdn.net/weinideai/article/details/4016038</link><guid>https://blog.csdn.net/weinideai/article/details/4016038</guid><author>weinideai</author><pubDate>Mon, 23 Mar 2009 09:43:00 +0800</pubDate><description><![CDATA[资料来源于网络：    变量的作用范围又称为作用域，是指某变量在程序中的有效范围。根据作用域，变量可以分为全局变量和局部变量。1  全局变量的作用域是全局性的，即在整个JavaScript程序中，全局变量处处使用。2  而在函数内部声明的变量，只在函数内部起作用。这些变量是局部变量，作用域是局部性的；函数的参数也是局部性的，只在函数内部起作用。    在函数内部，局部变量的优先级比同名的全局变]]></description><category></category></item><item><title><![CDATA[sql插入操作]]></title><link>https://blog.csdn.net/weinideai/article/details/4000722</link><guid>https://blog.csdn.net/weinideai/article/details/4000722</guid><author>weinideai</author><pubDate>Wed, 18 Mar 2009 11:08:00 +0800</pubDate><description><![CDATA[使用 INSERT 添加行INSERT 语句可给表添加一个或多个新行。INSERT 语句在简单的情况下有如下形式：INSERT [INTO] table_or_view [(column_list)] data_values此语句将使 data_values 作为一行或者多行插入已命名的表或视图中。column_list 是由逗号分隔的列名列表，用来指定为其提供数据的列。如果没有指定 column]]></description><category></category></item><item><title><![CDATA[ javascript 实现radio 的联动]]></title><link>https://blog.csdn.net/weinideai/article/details/3951571</link><guid>https://blog.csdn.net/weinideai/article/details/3951571</guid><author>weinideai</author><pubDate>Tue, 03 Mar 2009 09:01:00 +0800</pubDate><description><![CDATA[   aaa bbb ccc  111 222 333  function checkradio(o,x){       document.getElementsByName("inptB")[x-1].checked=o.checked      //用访问数组的方法，访问inputB数组！}  在IE6.0下测试通过！]]></description><category></category></item><item><title><![CDATA[C# 数组基础]]></title><link>https://blog.csdn.net/weinideai/article/details/3928712</link><guid>https://blog.csdn.net/weinideai/article/details/3928712</guid><author>weinideai</author><pubDate>Mon, 23 Feb 2009 15:19:00 +0800</pubDate><description><![CDATA[数组概述 C#数组从零开始建立索引，即数组索引从零开始。C# 中数组的工作方式与在大多数其他流行语言中的工作方式类似。但还有一些差异应引起注意。这些其实和泛型有些类似，数组的操作没有泛型方便，但是性能却不是泛型所能比拟的。声明数组时，方括号 ([]) 必须跟在类型后面，而不是标识符后面。在 C# 中，将方括号放在标识符后是不合法的语法。 int[] table; // not int ]]></description><category></category></item><item><title><![CDATA[深刻认识clientX，offsetX，screenX]]></title><link>https://blog.csdn.net/weinideai/article/details/3885444</link><guid>https://blog.csdn.net/weinideai/article/details/3885444</guid><author>weinideai</author><pubDate>Fri, 13 Feb 2009 09:06:00 +0800</pubDate><description><![CDATA[概念（来源于网络）：clientX 设置或获取鼠标指针位置相对于当前窗口的 x 坐标，其中客户区域不包括窗口自身的控件和滚动条。 clientY 设置或获取鼠标指针位置相对于当前窗口的 y 坐标，其中客户区域不包括窗口自身的控件和滚动条。 offsetX 设置或获取鼠标指针位置相对于触发事件的对象的 x 坐标。 offsetY 设置或获取鼠标指针位置相对于触发事件的对象的 y 坐标。 scre]]></description><category></category></item><item><title><![CDATA[scrollWidth,clientWidth与offsetWidth的区别 ]]></title><link>https://blog.csdn.net/weinideai/article/details/3880600</link><guid>https://blog.csdn.net/weinideai/article/details/3880600</guid><author>weinideai</author><pubDate>Thu, 12 Feb 2009 10:10:00 +0800</pubDate><description><![CDATA[ (注意：CSS中的margin属性，与clientWidth、offsetWidth、clientHeight、offsetHeight均无关)scrollWidth 是对象的实际内容的宽，不包边线宽度，会随对象中内容的多少改变（内容多了可能会改变对象的实际度）clientWidth 是对象可见的宽度，不包滚动条等边线，会随窗口的显示大小改变。 offsetWidth 是对象]]></description><category></category></item><item><title><![CDATA[table类（1）]]></title><link>https://blog.csdn.net/weinideai/article/details/3866765</link><guid>https://blog.csdn.net/weinideai/article/details/3866765</guid><author>weinideai</author><pubDate>Fri, 06 Feb 2009 19:35:00 +0800</pubDate><description><![CDATA[TableCellCollection 类封装 TableHeaderCell 和 TableCell 对象的集合，这些对象组成了 Table 控件中的一行。无法继承此类。命名空间：  System.Web.UI.WebControls程序集：  System.Web（在 System.Web.dll 中）备注： 使用此类以编程方式管理在 Table 控件中组成一行的 TableC]]></description><category></category></item><item><title><![CDATA[SQL Server提高合并复制性能（未看）]]></title><link>https://blog.csdn.net/weinideai/article/details/3866764</link><guid>https://blog.csdn.net/weinideai/article/details/3866764</guid><author>weinideai</author><pubDate>Fri, 06 Feb 2009 19:33:00 +0800</pubDate><description><![CDATA[改善合并复制性能的最好的方式就是尽可能地运行合并代理。然而，如果你的用户不在线，那么你就无法运行合并代理，并且你应该劝告你的用户尽量频繁进行同步。以下的贴士将会帮助你提高合并复制的性能。1、使用合适的配置文件(profile)关于合并复制性能，你有几种特定的配置文件可以用来解决特定的需求。要察看这些配置文件，右击你的合并代理，选择代理配置(profile)，然后从以下列表中选择合适]]></description><category></category></item><item><title><![CDATA[SQL语句性能调整原则]]></title><link>https://blog.csdn.net/weinideai/article/details/3862807</link><guid>https://blog.csdn.net/weinideai/article/details/3862807</guid><author>weinideai</author><pubDate>Wed, 04 Feb 2009 18:12:00 +0800</pubDate><description><![CDATA[ 一、问题的提出     在应用系统开发初期，由于开发数据库数据比较少，对于查询SQL语句，复杂视图的编写等体会不出SQL语句各种写法的性能优劣，但是如果将应用系统提交实际应用后，随着数据库中数据的增加，系统响应速度就成为目前系统需要解决的最主要的问题之一。系统优化中一个很重要的方面就是SQL语句的优化。对于海量数据，劣质SQL语句和优质SQL语句之间的速度差别可以达到上百倍，可见对于一个系统]]></description><category></category></item></channel></rss>