- DECLARE @PW_MPID NVARCHAR(max)
- set @PW_MPID='1555|2555|35|'
- DECLARE @PW_MPIDPostion Varchar(max) = CHARINDEX('|',@PW_MPID)
- rint @PW_MPIDPostion
- DECLARE @TempPW_MPID Varchar(max)
- WHILE(@PW_MPIDPostion > 0)
- BEGIN
- SET @TempPW_MPID = SUBSTRING(@PW_MPID ,1,@PW_MPIDPostion-1)
- print @TempPW_MPID
- SET @PW_MPID =SUBSTRING(@PW_MPID,@PW_MPIDPostion +1,LEN(@PW_MPID))
- print @PW_MPID
- SET @PW_MPIDPostion = CHARINDEX('|',@PW_MPID)
- print @PW_MPIDPostion
- END
Wednesday, 31 January 2018
SQL CharIndex Example
Subscribe to:
Post Comments (Atom)
Upload valid file in C#
protected bool CheckFileExtandLength(HttpPostedFile HtmlDocFile) { try { Dictionary<string, byte[]...
-
using Microsoft.Win32; using System; using System.Collections.Generic; using System.Management; using System.Net.NetworkInformation; using S...
-
Setting Header Programatically You can also set the cache headers programmatically. This can be useful for generated content and allows m...
-
protected bool CheckFileExtandLength(HttpPostedFile HtmlDocFile) { try { Dictionary<string, byte[]...
No comments:
Post a Comment