A
ad
I have a view, it is create by one primary table and two detail tables, like
SELECT St.GuyID,
WH.Weight,WH.Height,
Sight.SightL, Sight.SightR
FROM St,WH, Sight where
WH.GuyID = St.GuyID and Sight.GuyID = St.GuyID
I was use this select statement in a SqlDataSource.
How can I write the update statement for it?
SELECT St.GuyID,
WH.Weight,WH.Height,
Sight.SightL, Sight.SightR
FROM St,WH, Sight where
WH.GuyID = St.GuyID and Sight.GuyID = St.GuyID
I was use this select statement in a SqlDataSource.
How can I write the update statement for it?