|
SQL default sorting is possible
create table ta(name varchar(10)collate Chinese_PRC_CS_AS_WS)--If this sorting method was specified when the table was created
insert ta
select '1, 2, 3,,,'
select replace(replace(name,',',''),',','') from ta--it needs to be removed twice |
|