How to remove lines from cq_action using sql
like remove lines from <Greater then and >lower then how do i add that in?
like remove lines from <Greater then and >lower then how do i add that in?
i dont know if its ok to give links but wellQuote:
How to remove lines from cq_action using sql
like remove lines from <Greater then and >lower then how do i add that in?
delete from [COLOR="Red"]cq_action[/COLOR] where [COLOR="lime"]id[/COLOR] >= [COLOR="Blue"]6400040[/COLOR] and [COLOR="lime"]id[/COLOR] <= [COLOR="blue"]6400043[/COLOR]; deletes those rows: 6400040 6400041 6400042 6400043 --------------------------------------------------------------- delete from [COLOR="red"]cq_action[/COLOR] where [COLOR="lime"]id[/COLOR]= [COLOR="Blue"]6400040[/COLOR]; deletes this row: 6400040 ---------------------------------------------------------------