In PostgresSQL I used array types for storing ids, uuids etc like:
CREATE TABLE IF NOT EXISTS eventing.notifications (event_type integer NOT NULL, transport_type integer, user_id uuid, user_ids uuid[]);
or
CREATE TABLE IF NOT EXISTS public.sources (name character varying(255), timestamp without time zone, read_only_organization_ids integer[], organization_id uuid);
Is there an equivalent using Microsoft SQL server in Azure?