I am trying to perform insert query from one specific column from a table plus two static values, I am trying something like this:
INSERT INTO TableA(PolicyId, Type, Used)
SELECT ID FROM Policies, 'A', 1
But I am getting error near 'A' per SSMSE. How can I tackle this task?