i want to delete particular single row by comparing four colum data in mysql? -


right using query.

delete * relay username='xyz' , uname='admin' , password='123' , ip='10.1.1.80' , port = '80'. 

but query not working.

i want delete row forget column values.

instead of commas use and , remove *.

delete relay username='xyz' , uname='admin' , password='123' , ip='10.1.1.80' , port = '80'; 

Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -