我有一个只有两列id
和password
的table1,所以我不得不用id
和password
插入值,其中id
不喜欢'ADMIN%'...
我尝试如下查询:insert into table1 values('','') where id not like 'ADMIN%'
(无效)insert into table values('','') select id,password from table1 where id not like 'ADMIN%'
(无效)
这两个查询均无效。请帮忙 !!
最佳答案
插入表格('id','password');从表1中选择ID,密码,其中ID不喜欢'ADMIN%';分号...
尝试这个...
关于mysql - 如何用where子句编写insert?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22923310/