回答編集履歴
1
調整
test
CHANGED
@@ -20,5 +20,7 @@
|
|
20
20
|
```
|
21
21
|
# test
|
22
22
|
```sql
|
23
|
+
create table tbl (id int primary key auto_increment,val varchar(20));
|
24
|
+
insert into tbl(val) values('あああ'),('いいい'),('ううう'),('えええ'),('おおお');
|
23
|
-
|
25
|
+
update tbl set val=rnd_hiragana(10);
|
24
26
|
```
|