摘要: 本文转载:http://www.cnblogs.com/lmfeng/archive/2013/02/26/2932963.html 数据库模糊搜索时,关键字中有%号,怎么办? 数据库模糊搜索时,都知道应该用通配符%号来模糊匹配。如:select *from table where content like '%key%'。但当关键字key中也包含有%号时,应该怎么办? 数据库中有关键字:escape就是用来转换的。使用escape关键字定义转义符时,当转义符置于通配符之前时,该通配符就解释为普通字符。用 法:ESCAPE 'escape_character' 阅读全文
posted @ 2013-04-01 11:00 跟着阿笨一起玩.NET 阅读(525) 评论(0) 推荐(0) 编辑
摘要: 一,如何创建排序表1.T-SQL创建一个排序表。CREATE TABLE OrderTable( [OrderId] [int] IDENTITY(1,1) NOT NULL, [CustomerId] [int] NOT NULL, [OrderTotal] [decimal](18, 0) NOT NULL)2.T-SQL插入数据到排序表。Insert into OrderTable (CustomerId, OrderTotal)Values (1,90), (2,180), (6,540)3.查... 阅读全文
posted @ 2013-04-01 10:38 跟着阿笨一起玩.NET 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 几个收藏的根据数据库生成Insert语句的存储过程[修正版]Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->-- ======================================================--根据表中数据生成insert语句的存储过程--建立存储过程,执行spGenInsertSQL 表名--感谢playyuer----感谢szyicol-- ================================= 阅读全文
posted @ 2013-04-01 10:29 跟着阿笨一起玩.NET 阅读(638) 评论(0) 推荐(0) 编辑