“SQL Split String по космосу” Ответ

Создать функцию разделения таблицы в SQL Server


        
            
        
     SELECT 
    first_name, 
    last_name,
    value phone
FROM 
    sales.contacts
    CROSS APPLY STRING_SPLIT(phones, ',');
Filthy Frog

SQL Split String по космосу

SELECT SUBSTRING('please notify the sender at the e-mail address above',0,30 +
charindex(' ',SUBSTRING('please notify the sender at the e-mail address above',31,len('please notify the sender at the e-mail address above')))
 )
 as part1,
 
 SUBSTRING('please notify the sender at the e-mail address above',30+ charindex(' ',SUBSTRING('please notify the sender at the e-mail address above',31,len('please notify the sender at the e-mail address above'))),len('please notify the sender at the e-mail address above')) as part2

Ответы похожие на “SQL Split String по космосу”

Вопросы похожие на “SQL Split String по космосу”

Больше похожих ответов на “SQL Split String по космосу” по Sql

Смотреть популярные ответы по языку

Смотреть другие языки программирования