Hello,
I am trying to get the results similar to the below with this...
UserID | Exp1 | Exp2 | Exp3 | Exp4
-----------------------------------
123 | 1 | 9 | 7 | 3
321 | 6 | 2 | 0 | 2
With the following:
SELECT
(SELECT COUNT(StatusID) FROM Callbacks WHERE StatusID =...
I have no idea how to do this so maybe some kind sole could help me out. I have been reading documentation and trying to get this to work for hours now :(
Here's what I have.
UPDATE
Users
SET
Users.FirstName = 'Joe', Users.LastName = 'Bloggs', Users.Manager = Managers.Manager...
The following Access SQL query returns the following error, and I cannot see why:
INSERT INTO
Users (Personnel, FirstName, LastName, Manager)
SELECT
666, 'joe', 'bloggs', Managers.Manager
FROM
Managers
WHERE
Manager.FirstName + ' ' + Manager.LastName = 'James Brown'
The query...
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.