我需要將值添加到列中。這裏的問題是我需要將它插入一列。當我運行一個INSERT查詢,插入下一個其他列的值
INSERT INTO `livemigrationauditingdb`.`system_audit` (
`Comp`
)
VALUES (
'standard1'
)");
它顯示:
---------+---------+
|standard1|
---------+---------+
default| |
---------+---------+
default| |
---------+---------+
我希望它希望顯示:
---------+---------+
default |standard1|
---------+---------+
default | |
---------+---------+
任何想法的傢伙?
你如何確定哪一行添加值? –