mysql - Modify the isbn data of the database so that if the isbn encoding is normal, it will not change. If it exceeds 13 digits, the first 13 digits will be taken directly. How should I write the sql statement?
ringa_lee
ringa_lee 2017-05-18 10:50:27
0
1
644

ringa_lee
ringa_lee

ringa_lee

reply all(1)
淡淡烟草味

Query: select substr(isbn,0,13) from table

Modification: update table set isbn = substr(isbn,0,13)

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template