MySQL Optimization—Code Example to View Field Length:
CREATE TABLE tmp13(vb VARBINARY(10)) INSERT INTO tmp13 (vb) VALUES(12) SELECT LENGTH(vb) FROM tmp13 INSERT INTO tmp13 (vb) VALUES(1212)
The above is the detailed content of MySQL Optimization—Code Example to View Field Length. For more information, please follow other related articles on the PHP Chinese website!