03 2011 档案
摘要:/*lvl1 lvl2 lvl3 lvl4 lvl 4 3 4 1 3 2 2 1 2 2 3 4 4 4 3 4 3 1 2 2 怎么写代码 去比较lvl1、lvl2、lvl3、lvl4 对应每行的值,取其中最小的,将其值添加到lvl列里 运行结果应该是 lvl 1 1 2 3 1*/--方法(一) 函數法-->Title:Generating test data-->Author:wufeng4552-->Date :2009-10-16 09:58:16if not object_id('Tempdb..#t') is null drop table #
阅读全文
摘要:Written ArticlesGetting Started with jQuery – this is the official jQuery getting started guide.jQuery for JavaScript Programmers – Simon Willison (creator of django) gives you an introduction to jQuery for people who already understand JavaScript.jQuery Crash Course – Nathan Smith gives a quick int
阅读全文
摘要:1. DataTablesDataTables is very powerful jQuery plugin which offer a lot of features. For example, you can have on-the-fly filtering, ajax auto-loading of data, pagination, sorting columns, highlight sorted columns, extensive plug-in support, themeable by CSS or jQuery UI ThemeRoller and also a comp
阅读全文
摘要:这是一个未删除的临时日志。请手动删除它。(8e1a589c-d838-42f8-98bf-113104fc5952 - 3bfe001a-32de-4114-a6b4-4005b770f6d7)
阅读全文
摘要:InStr([start, ]string1, string2[, compare])获得字符索引描述:返回某字符串在另一字符串中第一次出现的位置。参数描述start可选。数值表达式,用于设置每次搜索的开始位置。如果省略,将从第一个字符的位置开始搜索。如果 start 包含 Null,则会出现错误。如果已指定 compare,则必须要有 start 参数。string1必选。接受搜索的字符串表达式。string2必选。要搜索的字符串表达式。compare可选。指示在计算子字符串时使用的比较类型的数值。有关数值,请参阅“设置”部分。如果省略,将执行二进制比较。Mid(string, start[
阅读全文
摘要:select * from table_a where charindex('a',id)>0 or charindex('b',id)>0 table_a 表中 id字段中含有"a"或者"b"的记录. --------------------------------------------------- CHARINDEX 返回字符串中指定表达式的起始位置。 语法 CHARINDEX ( expression1 , expression2 [ , start_location ] ) 参数 expressio
阅读全文