Заставить TextField выделить полный текст в фокусе

С SQL Server 2016 мы можем использовать string_split для выполнения этого:

create table commasep (
 id int identity(1,1)
 ,string nvarchar(100) )

insert into commasep (string) values ('John, Adam'), ('test1,test2,test3')

select id, [value] as String from commasep 
 cross apply string_split(string,',')
0
задан EFC 17 January 2019 в 00:11
поделиться