mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
8 lines
362 B
Text
8 lines
362 B
Text
select substring_index();
|
|
select substring_index(, '.', 2);
|
|
select substring_index('www.taosdata.com', , 2);
|
|
select substring_index('www.taosdata.com', '.', );
|
|
select substring_index(123456789, '7', 1);
|
|
select substring_index('www.taosdata.com', c, 0);
|
|
select substring_index('www.taosdata.com', '.', '2');
|
|
select substring_index('www.taosdata.com', '.', 2, 3);
|