Ask a Question related to MySQL, Design and Development.
-
howachen@gmail.com #1
Batch update?
Consider two tables:
Table_1 (id, data_1, data_2)
Table_2 (id, data_2)
How to load the `data_2` field from Table_2 to Table_1, which is linked
by `id`?
Thanks.
howachen@gmail.com Guest
-
Datagrid batch update
I have created an excel like grid where the grid defaults to edit mode when it is renderered. But I would like a way to perform a batch update since... -
Batch update
Hi; What I am trying to do is, display data in 5 columns in a datagrid. Out of the 5 columns 2 columns are textboxes so that, a user can change... -
Batch Processing, not quite batch
Did anyone come up with a solution or at least an explination for this? I am having the same issue trying to batch convert TIFF files to PDF. -
batch update symbols across multiple pngs - fireworks MX?
Fireworks Extensions at http://johndunning.com/fireworks Mr. John Dunning, you are my personal hero. Thank you so much for writing this... -
batch update exception
hello, i use db2 v7.2 fixpack 6 the following code should delete some rows (if available) from a table : (pst = PreparedStatement, cn =... -
Captain Paralytic #2
Re: Batch update?
[email]howachen@gmail.com[/email] wrote:update Table_1,Table_2> Consider two tables:
>
> Table_1 (id, data_1, data_2)
>
> Table_2 (id, data_2)
>
>
> How to load the `data_2` field from Table_2 to Table_1, which is linked
> by `id`?
>
> Thanks.
set Table_1.data_2 = Table_2.data_2
where Table_1.id=Table_2.id
Captain Paralytic Guest



Reply With Quote

