4 rows

View and edit SQL

Suggested facets: created_at (date)

to_idx

updated_at (date)

id ▼ created_at updated_at deleted_at comment_id user_id from_idx to_idx
1 2021-03-04 17:13:18.324141+03:00 2021-03-04 17:13:18.324141+03:00   5 5 5 5 0 12
2 2021-03-04 17:13:18.325043+03:00 2021-03-04 17:13:18.325043+03:00   6 6 6 6 0 12
3 2021-03-04 17:13:18.326613+03:00 2021-03-04 17:13:18.326613+03:00   13 13 11 11 0 12
4 2021-03-04 17:13:18.328791+03:00 2021-03-04 17:13:18.328791+03:00   18 18 16 16 0 11

Advanced export

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

CSV options:

CREATE TABLE `instagram_comment_user_mentions` (`id` integer,`created_at` datetime,`updated_at` datetime,`deleted_at` datetime,`comment_id` integer,`user_id` integer,`from_idx` integer,`to_idx` integer,PRIMARY KEY (`id`),CONSTRAINT `fk_instagram_comment_user_mentions_user` FOREIGN KEY (`user_id`) REFERENCES `instagram_users`(`id`),CONSTRAINT `fk_instagram_comments_user_mentions` FOREIGN KEY (`comment_id`) REFERENCES `instagram_comments`(`id`));
CREATE UNIQUE INDEX `instagram_comment_user_mentions_key` ON `instagram_comment_user_mentions`(`comment_id`,`user_id`,`from_idx`,`to_idx`);
CREATE INDEX `idx_instagram_comment_user_mentions_deleted_at` ON `instagram_comment_user_mentions`(`deleted_at`);