Hi,
I am trying to update a view but the result is 0 row(s) updated
ALTER VIEW vw_AuthorizedStationeries AS SELECT StationeryID, CreatedOn, StationeryName FROM dbo.Stationeries WHERE Authorized = 1 GO -----------------Update Views------------------- UPDATE vw_AuthorizedStationeries SET CreatedOn = GETDATE() WHERE StationeryName = 'StationThree' GO
What am I doing wrong?
I am trying to update the column 'CreatedOn' with todays date where the row is 'StationThree'.
Is it even possible to what I am trying to do using Views?
Thanks!