That's how I would do it, @Kobi Irom?
The Update statement of the MapBasic SQL does only support a very basic condition: A specific RowID:
Update table Set column = expr [ , column = expr, ...]
[ Where RowID = id ]
where id is the number of a row in the table
But of course use the NoSelect keyword so that the query doesn't mess with any current selection and the Hide keyword so that the query doesn't show up in the user interface:
SELECT * FROM myTable WHERE ID = 15575 INTO myTemp NoSelect Hide
The Hide keyword we recently learned about in the MapInfo Pro Developer group.