Skip to content

Instantly share code, notes, and snippets.

View honghuynhit's full-sized avatar
🇻🇳
Working from home

Huynh H. Dinh honghuynhit

🇻🇳
Working from home
View GitHub Profile
const numberLength = number.length;
// tslint:disable-next-line:radix
const numberReplace = (Math.round(parseFloat(numberLength) / 2 )) - 2;
return number.substr(0, numberReplace ) + '' + '' + '' + '' + number.substr(numberReplace + 3);
}
alter authorization on Database::your_db to [sa];
SET @num := 0;
UPDATE your_table SET id = @num := (@num+1);
ALTER TABLE your_table AUTO_INCREMENT =1;