Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] "SchUseStrongCrypto"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\……
<#@ template language="c#" HostSpecific="True" #> <#@ output extension= ".cs" #> <# int searchColumn=0; TableHost host = (TableHost)(Host); host.NameSpace = "CoalDAL"; string ModelSpace = "UserInfo&qu……
<#@ template language="c#" HostSpecific="True" #> <#@ output extension= ".cs" #> <# int searchColumn=0; TableHost host = (TableHost)(Host); host.NameSpace = "CarLifeDAL"; string ModelSpace = "SqUserNo……
<#@ template language="c#" HostSpecific="True" #> <#@ output extension= ".cs" #> <# TableHost host = (TableHost)(Host); string modelName="YyLampblack"; host.NameSpace="com.hb……
<selectKey keyProperty="id" order="AFTER" resultType="int"> SELECT LAST_INSERT_ID() </selectKey>各种搜索后发现,原来想要获得自增ID,要用对象的getId()方法,修改代码如下
<insert id="add"……
<dependency> <groupId>org.springframework.boot</groupId>……
select * from 表 a where exists(
select * from (
select 测站bai名du称zhi,max(时间) as FTime from 表 group by 测站名称) x
where x.测站名称=a.测站名称 and a.时间=x.FTime )
select stuff((select ','+ cast(appuserid as nvarchar(50)) from T_appUser_community where communityid=2 for xml path('')),1,1,'')