I am trying to Update a column in my table Inputcounts called concatenate off of a query called InputConcatenates that has a column also called concatenate. I am running an update query with the field name as concatenate the table name as InputCounts and the update to field as [InputConcatenates].[Concatenate]. But every time I run the query it pulls back that 0 records will be updated. Is my syntax wrong possibly?
Update Query SQL:
UPDATE InputCounts INNER JOIN InputConcatenate
ON InputCounts.CONCATENATE = InputConcatenate.CONCATENATE
SET InputCounts.CONCATENATE = [InputConcatenate].[CONCATENATE];
InputConcatenate Query SQL:
SELECT InputCounts.FLEET, InputCounts.AMMs, [FLEET] & [AMMs] AS CONCATENATE
FROM InputCounts;

SELECT * FROM InputCounts INNER JOIN InputConcatenate ON InputCounts.CONCATENATE = InputConcatenate.CONCATENATEInputCounts.CONCATENATEcolumn matches the value in theInputConcatenate.CONCATENATEcolumn of that row. Correct?SET InputCounts.CONCATENATE = [InputConcatenate].[CONCATENATE]? (You just confirmed those values are already equal.) In the question you asked about a syntax error; the problem is a logic error. Make sense?UPDATE InputCounts SET CONCATENATE = [FLEET] & [AMMs] WHERE CONCATENATE Is Null;