↧
Updating the table
Hi i am updating one table which is having 2 fk and one more field value while inserting i dont have any issues but while updating i dont want to update those 2fk values want to change only the other...
View ArticleUpdating the table
Simply write an update query only for affected columns,For example:update table1 set col1=value,col2=value2 where (put your condition here)cheers!!!Vatsawww.objectiveprogramming.com
View ArticleUpdating the table
Hi i am updating one table which is having 2 fk and one more field value while inserting i dont have any issues but while updating i dont want to update those 2fk values want to change only the other...
View Article