This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SET @num := 0; | |
UPDATE your_table SET id = @num := (@num+1); | |
ALTER TABLE your_table AUTO_INCREMENT =1; |
NewerOlder