Buradasın
SQL String Splitting Methods
techcult.com/4-ways-to-split-string-by-delimiter-in-sql/Yapay zekadan makale özeti
- Standard SQL Method
- SPLIT() function splits strings using specified delimiter
- Default delimiter is comma (,)
- Empty delimiter returns UTF-8 character array
- Empty string returns empty array
- SQL Server Method
- STRING_SPLIT() function splits strings
- PostgreSQL Method
- SPLIT_PART() function splits strings using position parameter
- Position starts at 1
- MySQL Method
- SUBSTRING_INDEX() function splits strings using delimiter and count