我想要查询应该返回没有 auto_increment 的列。
SHOW COLUMNS FROM test - This Query Return the following datas
Field Type Null Key Default Extra
id int(11) NO PRI NULL auto_increment
content text NO NULL
我想要查询应该返回不是 auto_increment 的列
前任:
SHOW COLUMNS FROM test WHERE `Extra` != 'auto_increment'
Field Type Null Key Default Extra
content text NO NULL