I have a table1 with only two columns id
and password
and so i had to insert values with id
and password
where id
not like 'ADMIN%'...
I tried my query as below:
insert into table1 values('','') where id not like 'ADMIN%'
(doesn't work)insert into table values('','') select id,password from table1 where id not like 'ADMIN%'
(doesn't work)
Both queries didn't work. please help !!