摘要:
目前Notepad++最新版是7.5.1,但很多插件仍然不能在64位版中使用,官网上是这么说的“Note that the most of plugins (including Plugin Manager) are not yet available in x64”。今天想用一下文本对比插件,于是 阅读全文
摘要:
在hibernate中用SQL查询返回的结果集中,列名或别名必须唯一,否则会报下面的错误。返回的结果集中,列名或别名可以没有,但只能有一列没有。//空别名重复的情况:org.hibernate.loader.custom.NonUniqueDiscoveredSqlAliasException: E 阅读全文
摘要:
with cte as( select bianma,fjbm from #tree where chkDisabled='true' union all select t.bianma,t.fjbm from cte c inner join #tree t on c.fjbm=t.bianma ) select * from cte; 阅读全文
摘要:
declare @tname nvarchar(255)=N'要修改的表名'; --修改所有以sl结尾的列名的小数位数为4位 select syscolumns.name into #t1 from syscolumns,systypes where syscolumns.xusertype = systypes.xusertype and syscolumns.id = object_i... 阅读全文