A family of Microsoft relational database management systems designed for ease of use.
Like this, assuming that you want the same month and year in each subquery:
SELECT master.id AS RegNo, master.City AS City, master.Region AS Region, master.FN AS FirstName, master.LN AS LastName, master.Fon AS PhoneNo, master.Dob AS BirthDate
FROM master
WHERE ((([master].[id]) Not In (SELECT id_1 FROM tbl_1 WHERE m1 = [Enter Month] AND y1 = [Enter Year]) AND ([master].[id]) Not In (SELECT id_2 FROM tbl_2 WHERE m2 = [Enter Month] AND y2 = [Enter Year]) AND ([master].[id]) Not In (SELECT id3 FROM tbl_3 WHERE m3 = [Enter Month] AND y3 = [Enter Year]) AND ([master].[id]) Not In (SELECT id_4 FROM tbl_4 WHERE m4 = [Enter Month] AND y4 = [Enter Year])));
In Query Design view, click Parameters on the Design tab of the ribbon.
In the Parameter column, enter [Enter Month], and select Long Integer from the Data Type column.
In the next row, enter [Enter Year] and select Long Integer.
Then click OK, and save the query.