I'd like to build a search form which allows members to get results of school districts within so many miles of their own district. Is this possible? How do I start? Thanks!
I'm not getting any results. No error messages.
UPDATE History
SET DistrictNameID =
(SELECT SchoolDistrictNameID FROM dbo_Client
WHERE ClientHistoryID > 1 AND History.Member_ID = dbo_Client.ClientHistoryID);
This hasn't worked, either:
UPDATE History INNER JOIN dbo_Client ON...
Table dbo_Client and Table History are linked (one to many) with dbo_Client.ClientHistoryID=History.Member_ID
I have created a empty field in History called DistrictNameID. I want dbo_Client.SchoolDistrictNameID to copy into (update) History.DistrictNameID, but only in those records where...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.