I am very new to Access and have little to no knowledge on SQL.
I have a table that has about 30,000 names on it. The first ~10,000 need to have Column 1 checked, the second ~10,000 need to have Column 2 checked, the last ~10,000 need to have Column 3 checked.
Right now I have all 30,000 names but no check marks. I need help to "mass check" the first group in Column 1 (and subsequently the second and third group with their respective columns)
Currently, my SQL is simply -
SELECT Table1.[First Name], Table1.[Last Name], Table1.Vinci, Table1.ID
FROM Table1;
Note: Vinci = Column 1
I hope this makes sense,
Thanks in advance