Hi,
I just want to confirm if the LIMIT clause is applicable to UPDATE/INSERT query as well.
I have to update certain data (10000 rows) but to be on the safer side i have to do it first on 10 records.
so my query will be like
again what 10 records will be updated? Will it update randomly or on certain criteria.
I am using MySQL version 5.0.22 .
Thanks in advance.
--------------------------------------------------------------------------
I never set a goal because u never know whats going to happen tommorow.
I just want to confirm if the LIMIT clause is applicable to UPDATE/INSERT query as well.
I have to update certain data (10000 rows) but to be on the safer side i have to do it first on 10 records.
so my query will be like
Code:
UPDATE <tablename> SET <KEY> = '<VALUE>' LIMIT 10 ;
I am using MySQL version 5.0.22 .
Thanks in advance.
--------------------------------------------------------------------------
I never set a goal because u never know whats going to happen tommorow.