SYSARTICLECOL system table

CREATE TABLE SYS.SYSARTICLECOL (
	publication_id	 UNSIGNED INT NOT NULL,
	table_id	 UNSIGNED INT NOT NULL,
	column_id	 UNSIGNED INT NOT NULL,
	PRIMARY KEY (publication_id, table_id, column_id),
	FOREIGN KEY REFERENCES SYS.SYSARTICLE,
	FOREIGN KEY REFERENCES SYS.SYSCOLUMN
)

Each row identifies a column in an article, identifying the column, the table it is in, and the publication it is part of.

publication_id A unique identifier for the publication of which the column is a part.

table_id The table to which the column belongs.

column_id The column identifier, from the SYSCOLUMN system table.