sql
begeneral
这个作者很懒,什么都没留下…
展开
-
mysql存储过程注释
mysql存储过程注释原创 2015-06-12 16:32:11 · 3630 阅读 · 0 评论 -
sqlserver 存储过程拼接SQL字符串有数字的处理办法
数据库:SQLSERVER2008R2declare @startRowIndex int;declare @endRowIndex int;declare @Sql varchar(1000);set @startRowIndex=1;set @endRowIndex=10;set @Sql='select ROW_NUMBER() over(orde原创 2017-03-28 17:52:38 · 6844 阅读 · 0 评论 -
SQLSERVER insert into select from 列顺序问题
当两张表的字段完全一样时,我们可以使用insert into table2 select * from table1的方式将table1中的数据插入到table2中。虽然两张表有一样的字段,但是如果字段的顺序不一样时,插入的数据就会产生混乱。下面用例子说明一下:Table1IDColumn1Column2123原创 2017-03-28 18:14:40 · 8696 阅读 · 0 评论 -
查询数据库存储过程中包含某字符串的所有存储过程名称
select name from sysobjects o, syscomments s where o.id = s.id and text like '%querytext%' and o.xtype = 'P' ORDER BY name将querytext替换成你想查找的字符串即可。转载 2018-01-23 16:54:25 · 4758 阅读 · 0 评论