hello there,
is there a way to change several entries in a db-table in a statement?
i have this table-structure:
table1:id1(pk),id2(pk),text
table2:id1(fk),id2(fk),newText( which holds only changes to table1 )
so far, i have done it with a temp-table like this:
1)create temp-table( with outer joins and if-statement in select )
2)drop table1
3)create table1 from temp-table
4)drop temp-table
5)drop table2
but i wonder if there is a more elegant way to solve this problem???