xtrabackup2.4只能备份5.*版本 [rootk8s-131 src]# mysql -V
mysql Ver 14.14 Distrib 5.7.35, for linux-glibc2.12 (x86_64) using EditLine wrapper
[rootk8s-131 src]# ll
total 658516
-rw-r--r--. 1 7161 31415 666328842 Jun 7 2021 mysql-5.7.35-linux-glibc2.12-x…
1.charAt()方法
charAt() 方法可返回字符串中指定位置的字符。
let str "Hello";
let s str.charAt(1);
console.log(s);//e
语法:string.charAt(index) index 必需值。表示字符串中某个位置的数字,即字符在字符串中的位置。
2.concat()…