sqlschool.gr logo

articles

Articles of SQLschool.gr Team

Όπως είχαν αναφέρει και σε προηγούμενο post με την αναμόρφωση του SqlSchool.gr χρειάστηκα να γράψω αρκετό κώδικα σε T-SQL και είχα υποσχεθεί ότι θα το μοιραστώ μαζί σας.

Ένα από αυτό είναι να κάνω split με βάση κάποιο delimiter και τα αποτελέσματα του να τα πάρω σε κάποιο array, που δεν έχω φυσικά στον SQL Server, και έτσι αυτός γίνεται table.

Αν και πιστεύω ότι αρκετοί θα έχετε υλοποιήσει κάτι τέτοιο εντούτοις σας παραδίδω και την δικιά μου εκδοχή.

CREATE FUNCTION [dbo].[fnSplitString](@string VARCHAR(8000), @delimiter CHAR(1))     
RETURNS @rv TABLE (row_values VARCHAR(8000))     
AS     
BEGIN     
    DECLARE @index INT ;    
    DECLARE @_string VARCHAR(8000) ;   
    
    SET @index = 1 ;   
    IF LEN(@string)<1 OR @string IS NULL  
    BEGIN
        RETURN;     
    END
    
    WHILE ( @index != 0 )     
    BEGIN     
        SET @index = CHARINDEX(@delimiter,@string) ;    
        IF ( @index !=0 )     
            SET @_string = LEFT(@string,@index - 1) ;    
        ELSE     
            SET @_string = @string ;    
        
        IF ( LEN(@_string) > 0 )
            INSERT INTO @rv(row_values) VALUES(@_string) ;     

        SET @string = RIGHT(@string,LEN(@string) - @index) ;    
        IF LEN(@string) = 0 BREAK ;    
    END ;
    RETURN ;    
END ;
GO

Και ένα παράδειγμα εκτέλεσης αυτής

SELECT * FROM dbo.fnSplitString('antonios;chatzipavlis;sql;school;greece',';');
GO

Και τα αποτελέσματα της είναι τα παρακάτω

row_values
-----------------------------
antonios
chatzipavlis
sql
school
greece

(5 row(s) affected)

Comments

06 Sep 2012 @ 9:43 AM

user-gravatar

Σωτήρης Φιλιππίδης

Γιατί όχι nvarchar(max);

06 Sep 2012 @ 10:22 PM

user-gravatar

antonch

Γιατί τα nvarchar(max), varchar(max), varbinary(max) ο SQL Server τα αντιμετωπίζει σαν BLOB και θέλει να κάνει λίγα περισσότερα πράγματα. Αν δεν μας είναι απαραίτητο καλό θα είναι να μην χρησιμοποιηθεί. Επίσης πρέπει να ληφθεί υπόψη και το πως θα χρησιμοποιηθεί ή συγκεκριμένη function. Αν θα καλείτε μόνη της ή θα είναι μέσα σε ένα query.

Antonios Chatzipavlis

Antonios Chatzipavlis

Antonios Chatzipavlis is a highly experienced Data Solutions Consultant and Trainer. He has been working in the IT industry since 1988, holding various roles such as senior developer, IT Manager, Data & AI Solutions Architect and Consultant.

Since 1995, Antonios has focused on modern technologies and software development tools, primarily by Microsoft. He has specialized in Data & AI since 2000, with expertise in Microsoft Data Platform (SQL Server, Azure SQL Databases, Azure Synapse Analytics, Microsoft Fabric, Power BI, AI) and Databricks.

Antonios is also a Microsoft Certified Trainer (MCT) for over 25 years, has been recognized as a Microsoft Most Valuable Professional (MVP) in Data Platform since 2010 and he is in the Data Expert 40 Powerlist 2024 by Boussias. He is the co-founder and visionary behind XLYTiCA, a company dedicated to Data & AI solutions.

Episode

Task Flows in Microsoft Fabric

image

More Episodes...

Tip

Get Certified: Become a Fabric Data Engineer

More Tips...

Become a member

If you want to receive updates from us become a member to our community.

Connect

Explore

Learn

sqlschool.gr © 2010-2025 All rights reserved

This site uses cookies for operational and analytics purposes only. By continuing to browse this site, you agree to their use.