ALTER FUNCTION [reg].[f_GetSameStringCntNoSort] ( @str1 VARCHAR(),--源字符串,取该串中的@strLen长度的字符是否在目的字符串 @str2 VARCHAR() --目的字符串 ) RETURNS INT AS BEGIN -- 返回的长度 DECLARE @count INT DECLARE @returnValue INT --初使化返回值 DECLARE @tempStr NVARCHAR() SET @count=LEN…
一.入参为List的写法: <select id="queryParamList" resultType="map" parameterType="java.util.List"> select id from static where id in <foreach collection="list" index="index" item="item" open=&qu…