0 rows where in_reply_to_user_id = 17919972

View and edit SQL

0 records

CREATE TABLE `twitter_tweets` (`id` integer,`created_at` datetime,`updated_at` datetime,`deleted_at` datetime,`author_id` integer,`retweeted` numeric,`source` text,`display_text_from_idx` integer,`display_text_to_idx` integer,`favorite_count` integer,`truncated` numeric,`retweet_count` integer,`possibly_sensitive` numeric,`created` datetime,`favorited` numeric,`full_text` text,`lang` text,`in_reply_to_user_id` integer,`in_reply_to_status_id` integer,PRIMARY KEY (`id`),CONSTRAINT `fk_twitter_tweets_author` FOREIGN KEY (`author_id`) REFERENCES `twitter_users`(`id`),CONSTRAINT `fk_twitter_tweets_in_reply_to_user` FOREIGN KEY (`in_reply_to_user_id`) REFERENCES `twitter_users`(`id`),CONSTRAINT `fk_twitter_tweets_in_reply_to_status` FOREIGN KEY (`in_reply_to_status_id`) REFERENCES `twitter_tweets`(`id`));
CREATE INDEX `idx_twitter_tweets_deleted_at` ON `twitter_tweets`(`deleted_at`);