Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的php脚本中,我想检查数据库表的结构是否已更改。不会提供足够的DESCRIBE TABLE信息,因为它忽略了外键。SHOW CREATE TABLE太多了,因为这里也出现了自动增量值。
php
DESCRIBE TABLE
SHOW CREATE TABLE
SHOW CREATE TABLE 太多了,因为这里也出现了自动增量值。
只需使用正则表达式过滤掉自动增量值。
preg_replace('/ AUTO_INCREMENT=[0-9]+ /', ' ', $sql);