Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Edit Record in a Select Query

Status
Not open for further replies.

BrenoAguiar

IS-IT--Management
Feb 8, 2005
81
US
I have this Select Query listed bellow and that is the data source for a form "mainmedia". The problem is that I can not edit the records (values) through the form neither in the query view.
Here is the SQL:

SELECT MediaDetails.Media_cd, MediaDetails.Media_name, TOLLFREELIST.Toll_free_no, URLADDRESSLIST.Reg_domains,
FROM (MediaDetails LEFT JOIN URLADDRESSLIST ON MediaDetails.Media_cd = URLADDRESSLIST.Media_cd) LEFT JOIN TOLLFREELIST ON MediaDetails.Media_cd = TOLLFREELIST.Media_cd
WHERE (((MediaDetails.Media_cd)<>61));

any Help ?

 
You need to make sure to have a primary key in each of these tables.

Then you can edit the records
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top