Column descriptions

group_session
Group session ID.
station
The iMac that the participant was stationed at.
device_id
The id of the EEG device used in the station.

where group_session = "exp_2023_02_10_10"

View and edit SQL

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE "eeg_device" (
   [group_session] TEXT REFERENCES [group_session]([id]),
   [station] TEXT REFERENCES [station]([id]),
   [device_id] TEXT,
   PRIMARY KEY ([group_session], [station])
);
CREATE INDEX [idx_eeg_device_station]
    ON [eeg_device] ([station]);
CREATE INDEX [idx_eeg_device_group_session]
    ON [eeg_device] ([group_session]);