J
jonathan
I have this qeury, in MS SQL server this query is updatable. I move it into
access and it's not. Can i make this same query updatable in access.
From what i have read it's because i am using count, is there another way?
thx
SELECT (SELECT Count(tblgrouptasks.id)
FROM tblgrouptasks
WHERE tblgrouptasks.taskid = tasks.taskid) AS
rec_count, tasks.TaskID, tasks.Tasked_for, tasks.What_task,
tasks.next_contact, tasks.last_contact, tasks.priority_level,
tasks.task_completed, tasks.Task_due, tasks.task_notes, tasks.JobID
FROM tasks
WHERE tasks.task_completed)="no"
access and it's not. Can i make this same query updatable in access.
From what i have read it's because i am using count, is there another way?
thx
SELECT (SELECT Count(tblgrouptasks.id)
FROM tblgrouptasks
WHERE tblgrouptasks.taskid = tasks.taskid) AS
rec_count, tasks.TaskID, tasks.Tasked_for, tasks.What_task,
tasks.next_contact, tasks.last_contact, tasks.priority_level,
tasks.task_completed, tasks.Task_due, tasks.task_notes, tasks.JobID
FROM tasks
WHERE tasks.task_completed)="no"