I have table in mysql:
id | num1 | num2| num 3| num3| num5|
1 | 6 | 3 | 4 | 2 | 1 |
in sql I do for example:
$num = num2;
$val = 2;
$id = 2;
$sql = "update TABLE set '$num'='$val' where id='$id'";
mysql_query( $sql);
I can do with $val and $id, but I have a problem with $num…
how to do this in Doctrine 1.2?
Try something like this: