I have a table, where it composed of several columns, but i am concerning only on a specific column with datatype varchar under that db table...
Now, for example:
column: links
values:
Now, i would like to update the said column such that it only replace the
'http://localhost/' to some value or let us say an existing website rootlink 'http://www.google.com. ph/'
that will result into
I expect from this db table to have millions of row, therefore i doubt to implement my idea of replacing them one by one at a time because this db table is just acting like a temporary storage that will be truncated by the time the control system will demand a new temporary storage... and it takes little time to process... Thread-timing bug will arise
I believe that the MySQL Server will process this just in time.
Is it possible to do it on just a query? or queries? Java is the front-end
Now, for example:
column: links
values:
Now, i would like to update the said column such that it only replace the
'http://localhost/' to some value or let us say an existing website rootlink 'http://www.google.com. ph/'
that will result into
I expect from this db table to have millions of row, therefore i doubt to implement my idea of replacing them one by one at a time because this db table is just acting like a temporary storage that will be truncated by the time the control system will demand a new temporary storage... and it takes little time to process... Thread-timing bug will arise
I believe that the MySQL Server will process this just in time.
Is it possible to do it on just a query? or queries? Java is the front-end
Comment