![]() |
Need little help qith SQL query
I need to update few rows of data but only for range of entries with ID's between 40 and 100.
so update table set field='blah-blah' where id ---- ??? |
update table set field='blah blah' where id >= 40 and id <=100
|
Quote:
|
I kiss you.
Thanks |
Try also
UPDATE table SET field='blah blah' WHERE id BETWEEN 40 AND 100 |
| All times are GMT -7. The time now is 09:38 PM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123