#Google
Find all records from days when the number of distinct users receiving emails was greater than the number of distinct users sending emails
table name: google_gmail_emails

Solution:
select * from google_gmail_emails
where day in(
select day
from google_gmail_emails
group by day
having count(distinct from_user)<
count(distinct to_user)
)
Output (Few Records):

SQL Script:
USE [StrataScratch]
GO
CREATE TABLE [dbo].[google_gmail_emails](
[id] [int] NULL,
[from_user] [varchar](50) NULL,
[to_user] [varchar](50) NULL,
[day] [int] NULL
) ON [PRIMARY]
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (0, N'6edf0be4b2267df1fa', N'75d295377a46f83236', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (1, N'6edf0be4b2267df1fa', N'32ded68d89443e808', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (2, N'6edf0be4b2267df1fa', N'55e60cfcc9dc49c17e', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (3, N'6edf0be4b2267df1fa', N'e0e0defbb9ec47f6f7', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (4, N'6edf0be4b2267df1fa', N'47be2887786891367e', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (5, N'6edf0be4b2267df1fa', N'2813e59cf6c1ff698e', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (6, N'6edf0be4b2267df1fa', N'a84065b7933ad01019', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (7, N'6edf0be4b2267df1fa', N'850badf89ed8f06854', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (8, N'6edf0be4b2267df1fa', N'6b503743a13d778200', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (9, N'6edf0be4b2267df1fa', N'd63386c884aeb9f71d', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (10, N'6edf0be4b2267df1fa', N'5b8754928306a18b68', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (11, N'6edf0be4b2267df1fa', N'6edf0be4b2267df1fa', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (12, N'6edf0be4b2267df1fa', N'406539987dd9b679c0', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (13, N'6edf0be4b2267df1fa', N'114bafadff2d882864', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (14, N'6edf0be4b2267df1fa', N'157e3e9278e32aba3e', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (15, N'75d295377a46f83236', N'75d295377a46f83236', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (16, N'75d295377a46f83236', N'd63386c884aeb9f71d', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (17, N'75d295377a46f83236', N'55e60cfcc9dc49c17e', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (18, N'75d295377a46f83236', N'47be2887786891367e', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (19, N'75d295377a46f83236', N'5b8754928306a18b68', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (20, N'75d295377a46f83236', N'850badf89ed8f06854', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (21, N'75d295377a46f83236', N'5eff3a5bfc0687351e', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (22, N'75d295377a46f83236', N'5dc768b2f067c56f77', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (23, N'75d295377a46f83236', N'114bafadff2d882864', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (24, N'75d295377a46f83236', N'e0e0defbb9ec47f6f7', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (25, N'75d295377a46f83236', N'7cfe354d9a64bf8173', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (26, N'5dc768b2f067c56f77', N'114bafadff2d882864', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (27, N'5dc768b2f067c56f77', N'2813e59cf6c1ff698e', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (28, N'5dc768b2f067c56f77', N'91f59516cb9dee1e88', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (29, N'5dc768b2f067c56f77', N'5b8754928306a18b68', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (30, N'5dc768b2f067c56f77', N'6b503743a13d778200', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (31, N'5dc768b2f067c56f77', N'aa0bd72b729fab6e9e', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (32, N'5dc768b2f067c56f77', N'850badf89ed8f06854', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (33, N'5dc768b2f067c56f77', N'406539987dd9b679c0', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (34, N'5dc768b2f067c56f77', N'75d295377a46f83236', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (35, N'5dc768b2f067c56f77', N'd63386c884aeb9f71d', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (36, N'5dc768b2f067c56f77', N'ef5fe98c6b9f313075', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (37, N'32ded68d89443e808', N'55e60cfcc9dc49c17e', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (38, N'32ded68d89443e808', N'e0e0defbb9ec47f6f7', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (39, N'32ded68d89443e808', N'850badf89ed8f06854', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (40, N'32ded68d89443e808', N'5eff3a5bfc0687351e', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (41, N'32ded68d89443e808', N'8bba390b53976da0cd', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (42, N'32ded68d89443e808', N'91f59516cb9dee1e88', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (43, N'32ded68d89443e808', N'6edf0be4b2267df1fa', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (44, N'32ded68d89443e808', N'd63386c884aeb9f71d', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (45, N'32ded68d89443e808', N'32ded68d89443e808', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (46, N'32ded68d89443e808', N'5dc768b2f067c56f77', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (47, N'32ded68d89443e808', N'406539987dd9b679c0', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (48, N'32ded68d89443e808', N'a84065b7933ad01019', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (49, N'32ded68d89443e808', N'2813e59cf6c1ff698e', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (50, N'32ded68d89443e808', N'cbc4bd40cd1687754', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (51, N'32ded68d89443e808', N'aa0bd72b729fab6e9e', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (52, N'32ded68d89443e808', N'75d295377a46f83236', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (53, N'32ded68d89443e808', N'6b503743a13d778200', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (54, N'32ded68d89443e808', N'5b8754928306a18b68', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (55, N'32ded68d89443e808', N'47be2887786891367e', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (56, N'e0e0defbb9ec47f6f7', N'5dc768b2f067c56f77', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (57, N'e0e0defbb9ec47f6f7', N'2813e59cf6c1ff698e', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (58, N'e0e0defbb9ec47f6f7', N'6b503743a13d778200', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (59, N'e0e0defbb9ec47f6f7', N'e22d2eabc2d4c19688', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (60, N'e0e0defbb9ec47f6f7', N'e6088004caf0c8cc51', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (61, N'e0e0defbb9ec47f6f7', N'aa0bd72b729fab6e9e', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (62, N'e0e0defbb9ec47f6f7', N'55e60cfcc9dc49c17e', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (63, N'e0e0defbb9ec47f6f7', N'850badf89ed8f06854', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (64, N'e0e0defbb9ec47f6f7', N'd63386c884aeb9f71d', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (65, N'e0e0defbb9ec47f6f7', N'a84065b7933ad01019', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (66, N'e0e0defbb9ec47f6f7', N'32ded68d89443e808', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (67, N'e0e0defbb9ec47f6f7', N'47be2887786891367e', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (68, N'e0e0defbb9ec47f6f7', N'157e3e9278e32aba3e', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (69, N'e0e0defbb9ec47f6f7', N'cbc4bd40cd1687754', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (70, N'e0e0defbb9ec47f6f7', N'e0e0defbb9ec47f6f7', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (71, N'6b503743a13d778200', N'850badf89ed8f06854', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (72, N'6b503743a13d778200', N'55e60cfcc9dc49c17e', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (73, N'6b503743a13d778200', N'cbc4bd40cd1687754', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (74, N'6b503743a13d778200', N'e0e0defbb9ec47f6f7', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (75, N'6b503743a13d778200', N'7cfe354d9a64bf8173', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (76, N'6b503743a13d778200', N'32ded68d89443e808', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (77, N'6b503743a13d778200', N'e6088004caf0c8cc51', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (78, N'6b503743a13d778200', N'aa0bd72b729fab6e9e', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (79, N'6b503743a13d778200', N'5dc768b2f067c56f77', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (80, N'e22d2eabc2d4c19688', N'8bba390b53976da0cd', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (81, N'e22d2eabc2d4c19688', N'e0e0defbb9ec47f6f7', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (82, N'e22d2eabc2d4c19688', N'ef5fe98c6b9f313075', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (83, N'e22d2eabc2d4c19688', N'5eff3a5bfc0687351e', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (84, N'e22d2eabc2d4c19688', N'47be2887786891367e', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (85, N'e22d2eabc2d4c19688', N'406539987dd9b679c0', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (86, N'e22d2eabc2d4c19688', N'cbc4bd40cd1687754', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (87, N'e22d2eabc2d4c19688', N'7cfe354d9a64bf8173', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (88, N'e22d2eabc2d4c19688', N'e6088004caf0c8cc51', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (89, N'e22d2eabc2d4c19688', N'aa0bd72b729fab6e9e', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (90, N'e22d2eabc2d4c19688', N'6edf0be4b2267df1fa', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (91, N'e22d2eabc2d4c19688', N'157e3e9278e32aba3e', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (92, N'e22d2eabc2d4c19688', N'd63386c884aeb9f71d', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (93, N'd63386c884aeb9f71d', N'cbc4bd40cd1687754', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (94, N'd63386c884aeb9f71d', N'8bba390b53976da0cd', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (95, N'd63386c884aeb9f71d', N'75d295377a46f83236', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (96, N'd63386c884aeb9f71d', N'5b8754928306a18b68', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (97, N'd63386c884aeb9f71d', N'e6088004caf0c8cc51', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (98, N'd63386c884aeb9f71d', N'e22d2eabc2d4c19688', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (99, N'd63386c884aeb9f71d', N'55e60cfcc9dc49c17e', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (100, N'd63386c884aeb9f71d', N'5dc768b2f067c56f77', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (101, N'd63386c884aeb9f71d', N'32ded68d89443e808', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (102, N'd63386c884aeb9f71d', N'157e3e9278e32aba3e', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (103, N'cbc4bd40cd1687754', N'7cfe354d9a64bf8173', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (104, N'cbc4bd40cd1687754', N'114bafadff2d882864', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (105, N'cbc4bd40cd1687754', N'157e3e9278e32aba3e', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (106, N'cbc4bd40cd1687754', N'e6088004caf0c8cc51', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (107, N'cbc4bd40cd1687754', N'5eff3a5bfc0687351e', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (108, N'cbc4bd40cd1687754', N'5b8754928306a18b68', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (109, N'cbc4bd40cd1687754', N'850badf89ed8f06854', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (110, N'cbc4bd40cd1687754', N'406539987dd9b679c0', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (111, N'cbc4bd40cd1687754', N'd63386c884aeb9f71d', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (112, N'cbc4bd40cd1687754', N'e0e0defbb9ec47f6f7', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (113, N'cbc4bd40cd1687754', N'cbc4bd40cd1687754', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (114, N'cbc4bd40cd1687754', N'2813e59cf6c1ff698e', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (115, N'cbc4bd40cd1687754', N'47be2887786891367e', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (116, N'cbc4bd40cd1687754', N'e22d2eabc2d4c19688', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (117, N'cbc4bd40cd1687754', N'32ded68d89443e808', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (118, N'ef5fe98c6b9f313075', N'47be2887786891367e', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (119, N'ef5fe98c6b9f313075', N'91f59516cb9dee1e88', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (120, N'ef5fe98c6b9f313075', N'2813e59cf6c1ff698e', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (121, N'ef5fe98c6b9f313075', N'e22d2eabc2d4c19688', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (122, N'ef5fe98c6b9f313075', N'406539987dd9b679c0', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (123, N'ef5fe98c6b9f313075', N'6b503743a13d778200', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (124, N'ef5fe98c6b9f313075', N'850badf89ed8f06854', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (125, N'ef5fe98c6b9f313075', N'114bafadff2d882864', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (126, N'ef5fe98c6b9f313075', N'e0e0defbb9ec47f6f7', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (127, N'ef5fe98c6b9f313075', N'5dc768b2f067c56f77', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (128, N'ef5fe98c6b9f313075', N'55e60cfcc9dc49c17e', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (129, N'ef5fe98c6b9f313075', N'cbc4bd40cd1687754', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (130, N'ef5fe98c6b9f313075', N'5b8754928306a18b68', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (131, N'ef5fe98c6b9f313075', N'32ded68d89443e808', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (132, N'ef5fe98c6b9f313075', N'8bba390b53976da0cd', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (133, N'ef5fe98c6b9f313075', N'd63386c884aeb9f71d', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (134, N'ef5fe98c6b9f313075', N'e6088004caf0c8cc51', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (135, N'ef5fe98c6b9f313075', N'5eff3a5bfc0687351e', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (136, N'ef5fe98c6b9f313075', N'ef5fe98c6b9f313075', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (137, N'8bba390b53976da0cd', N'd63386c884aeb9f71d', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (138, N'8bba390b53976da0cd', N'55e60cfcc9dc49c17e', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (139, N'8bba390b53976da0cd', N'5dc768b2f067c56f77', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (140, N'8bba390b53976da0cd', N'406539987dd9b679c0', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (141, N'8bba390b53976da0cd', N'5eff3a5bfc0687351e', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (142, N'8bba390b53976da0cd', N'91f59516cb9dee1e88', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (143, N'8bba390b53976da0cd', N'e6088004caf0c8cc51', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (144, N'8bba390b53976da0cd', N'75d295377a46f83236', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (145, N'8bba390b53976da0cd', N'cbc4bd40cd1687754', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (146, N'8bba390b53976da0cd', N'a84065b7933ad01019', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (147, N'8bba390b53976da0cd', N'e22d2eabc2d4c19688', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (148, N'8bba390b53976da0cd', N'6edf0be4b2267df1fa', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (149, N'8bba390b53976da0cd', N'32ded68d89443e808', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (150, N'8bba390b53976da0cd', N'850badf89ed8f06854', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (151, N'157e3e9278e32aba3e', N'850badf89ed8f06854', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (152, N'157e3e9278e32aba3e', N'aa0bd72b729fab6e9e', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (153, N'157e3e9278e32aba3e', N'75d295377a46f83236', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (154, N'157e3e9278e32aba3e', N'e22d2eabc2d4c19688', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (155, N'157e3e9278e32aba3e', N'5eff3a5bfc0687351e', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (156, N'157e3e9278e32aba3e', N'114bafadff2d882864', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (157, N'157e3e9278e32aba3e', N'91f59516cb9dee1e88', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (158, N'157e3e9278e32aba3e', N'6edf0be4b2267df1fa', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (159, N'157e3e9278e32aba3e', N'a84065b7933ad01019', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (160, N'157e3e9278e32aba3e', N'5b8754928306a18b68', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (161, N'2813e59cf6c1ff698e', N'47be2887786891367e', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (162, N'2813e59cf6c1ff698e', N'e0e0defbb9ec47f6f7', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (163, N'2813e59cf6c1ff698e', N'75d295377a46f83236', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (164, N'2813e59cf6c1ff698e', N'5eff3a5bfc0687351e', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (165, N'2813e59cf6c1ff698e', N'406539987dd9b679c0', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (166, N'2813e59cf6c1ff698e', N'cbc4bd40cd1687754', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (167, N'2813e59cf6c1ff698e', N'8bba390b53976da0cd', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (168, N'2813e59cf6c1ff698e', N'6edf0be4b2267df1fa', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (169, N'2813e59cf6c1ff698e', N'32ded68d89443e808', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (170, N'2813e59cf6c1ff698e', N'114bafadff2d882864', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (171, N'2813e59cf6c1ff698e', N'55e60cfcc9dc49c17e', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (172, N'aa0bd72b729fab6e9e', N'75d295377a46f83236', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (173, N'aa0bd72b729fab6e9e', N'e22d2eabc2d4c19688', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (174, N'aa0bd72b729fab6e9e', N'91f59516cb9dee1e88', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (175, N'aa0bd72b729fab6e9e', N'ef5fe98c6b9f313075', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (176, N'aa0bd72b729fab6e9e', N'8bba390b53976da0cd', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (177, N'aa0bd72b729fab6e9e', N'cbc4bd40cd1687754', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (178, N'aa0bd72b729fab6e9e', N'7cfe354d9a64bf8173', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (179, N'aa0bd72b729fab6e9e', N'5eff3a5bfc0687351e', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (180, N'aa0bd72b729fab6e9e', N'2813e59cf6c1ff698e', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (181, N'aa0bd72b729fab6e9e', N'aa0bd72b729fab6e9e', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (182, N'aa0bd72b729fab6e9e', N'47be2887786891367e', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (183, N'aa0bd72b729fab6e9e', N'd63386c884aeb9f71d', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (184, N'91f59516cb9dee1e88', N'd63386c884aeb9f71d', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (185, N'91f59516cb9dee1e88', N'e6088004caf0c8cc51', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (186, N'91f59516cb9dee1e88', N'8bba390b53976da0cd', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (187, N'91f59516cb9dee1e88', N'91f59516cb9dee1e88', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (188, N'91f59516cb9dee1e88', N'a84065b7933ad01019', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (189, N'91f59516cb9dee1e88', N'2813e59cf6c1ff698e', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (190, N'91f59516cb9dee1e88', N'aa0bd72b729fab6e9e', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (191, N'91f59516cb9dee1e88', N'850badf89ed8f06854', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (192, N'91f59516cb9dee1e88', N'406539987dd9b679c0', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (193, N'91f59516cb9dee1e88', N'e22d2eabc2d4c19688', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (194, N'91f59516cb9dee1e88', N'ef5fe98c6b9f313075', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (195, N'91f59516cb9dee1e88', N'e0e0defbb9ec47f6f7', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (196, N'91f59516cb9dee1e88', N'6b503743a13d778200', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (197, N'91f59516cb9dee1e88', N'55e60cfcc9dc49c17e', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (198, N'91f59516cb9dee1e88', N'6edf0be4b2267df1fa', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (199, N'91f59516cb9dee1e88', N'5eff3a5bfc0687351e', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (200, N'114bafadff2d882864', N'157e3e9278e32aba3e', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (201, N'114bafadff2d882864', N'75d295377a46f83236', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (202, N'114bafadff2d882864', N'47be2887786891367e', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (203, N'114bafadff2d882864', N'aa0bd72b729fab6e9e', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (204, N'114bafadff2d882864', N'cbc4bd40cd1687754', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (205, N'114bafadff2d882864', N'5dc768b2f067c56f77', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (206, N'114bafadff2d882864', N'2813e59cf6c1ff698e', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (207, N'114bafadff2d882864', N'5eff3a5bfc0687351e', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (208, N'406539987dd9b679c0', N'ef5fe98c6b9f313075', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (209, N'406539987dd9b679c0', N'114bafadff2d882864', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (210, N'406539987dd9b679c0', N'8bba390b53976da0cd', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (211, N'406539987dd9b679c0', N'32ded68d89443e808', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (212, N'406539987dd9b679c0', N'e0e0defbb9ec47f6f7', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (213, N'406539987dd9b679c0', N'd63386c884aeb9f71d', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (214, N'406539987dd9b679c0', N'91f59516cb9dee1e88', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (215, N'406539987dd9b679c0', N'e22d2eabc2d4c19688', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (216, N'406539987dd9b679c0', N'a84065b7933ad01019', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (217, N'5eff3a5bfc0687351e', N'2813e59cf6c1ff698e', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (218, N'5eff3a5bfc0687351e', N'a84065b7933ad01019', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (219, N'5eff3a5bfc0687351e', N'6b503743a13d778200', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (220, N'5eff3a5bfc0687351e', N'ef5fe98c6b9f313075', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (221, N'5eff3a5bfc0687351e', N'5dc768b2f067c56f77', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (222, N'5eff3a5bfc0687351e', N'e6088004caf0c8cc51', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (223, N'5eff3a5bfc0687351e', N'850badf89ed8f06854', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (224, N'5eff3a5bfc0687351e', N'91f59516cb9dee1e88', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (225, N'5eff3a5bfc0687351e', N'75d295377a46f83236', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (226, N'5eff3a5bfc0687351e', N'47be2887786891367e', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (227, N'5eff3a5bfc0687351e', N'7cfe354d9a64bf8173', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (228, N'a84065b7933ad01019', N'6b503743a13d778200', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (229, N'a84065b7933ad01019', N'75d295377a46f83236', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (230, N'a84065b7933ad01019', N'e0e0defbb9ec47f6f7', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (231, N'a84065b7933ad01019', N'a84065b7933ad01019', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (232, N'a84065b7933ad01019', N'5dc768b2f067c56f77', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (233, N'a84065b7933ad01019', N'2813e59cf6c1ff698e', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (234, N'a84065b7933ad01019', N'd63386c884aeb9f71d', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (235, N'a84065b7933ad01019', N'ef5fe98c6b9f313075', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (236, N'a84065b7933ad01019', N'406539987dd9b679c0', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (237, N'a84065b7933ad01019', N'55e60cfcc9dc49c17e', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (238, N'a84065b7933ad01019', N'8bba390b53976da0cd', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (239, N'a84065b7933ad01019', N'850badf89ed8f06854', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (240, N'a84065b7933ad01019', N'e6088004caf0c8cc51', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (241, N'a84065b7933ad01019', N'157e3e9278e32aba3e', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (242, N'850badf89ed8f06854', N'e22d2eabc2d4c19688', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (243, N'850badf89ed8f06854', N'91f59516cb9dee1e88', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (244, N'850badf89ed8f06854', N'32ded68d89443e808', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (245, N'850badf89ed8f06854', N'5dc768b2f067c56f77', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (246, N'850badf89ed8f06854', N'cbc4bd40cd1687754', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (247, N'850badf89ed8f06854', N'aa0bd72b729fab6e9e', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (248, N'850badf89ed8f06854', N'7cfe354d9a64bf8173', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (249, N'850badf89ed8f06854', N'a84065b7933ad01019', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (250, N'850badf89ed8f06854', N'5b8754928306a18b68', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (251, N'850badf89ed8f06854', N'157e3e9278e32aba3e', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (252, N'850badf89ed8f06854', N'55e60cfcc9dc49c17e', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (253, N'850badf89ed8f06854', N'850badf89ed8f06854', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (254, N'47be2887786891367e', N'e0e0defbb9ec47f6f7', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (255, N'47be2887786891367e', N'2813e59cf6c1ff698e', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (256, N'47be2887786891367e', N'55e60cfcc9dc49c17e', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (257, N'47be2887786891367e', N'406539987dd9b679c0', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (258, N'47be2887786891367e', N'e22d2eabc2d4c19688', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (259, N'47be2887786891367e', N'aa0bd72b729fab6e9e', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (260, N'55e60cfcc9dc49c17e', N'd63386c884aeb9f71d', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (261, N'55e60cfcc9dc49c17e', N'6edf0be4b2267df1fa', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (262, N'55e60cfcc9dc49c17e', N'5eff3a5bfc0687351e', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (263, N'55e60cfcc9dc49c17e', N'850badf89ed8f06854', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (264, N'55e60cfcc9dc49c17e', N'47be2887786891367e', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (265, N'55e60cfcc9dc49c17e', N'75d295377a46f83236', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (266, N'55e60cfcc9dc49c17e', N'5b8754928306a18b68', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (267, N'55e60cfcc9dc49c17e', N'114bafadff2d882864', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (268, N'55e60cfcc9dc49c17e', N'e0e0defbb9ec47f6f7', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (269, N'55e60cfcc9dc49c17e', N'e6088004caf0c8cc51', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (270, N'55e60cfcc9dc49c17e', N'32ded68d89443e808', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (271, N'55e60cfcc9dc49c17e', N'ef5fe98c6b9f313075', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (272, N'55e60cfcc9dc49c17e', N'2813e59cf6c1ff698e', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (273, N'55e60cfcc9dc49c17e', N'aa0bd72b729fab6e9e', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (274, N'55e60cfcc9dc49c17e', N'406539987dd9b679c0', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (275, N'55e60cfcc9dc49c17e', N'6b503743a13d778200', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (276, N'5b8754928306a18b68', N'7cfe354d9a64bf8173', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (277, N'5b8754928306a18b68', N'6edf0be4b2267df1fa', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (278, N'5b8754928306a18b68', N'cbc4bd40cd1687754', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (279, N'5b8754928306a18b68', N'406539987dd9b679c0', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (280, N'5b8754928306a18b68', N'5dc768b2f067c56f77', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (281, N'5b8754928306a18b68', N'a84065b7933ad01019', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (282, N'5b8754928306a18b68', N'6b503743a13d778200', 10)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (283, N'5b8754928306a18b68', N'2813e59cf6c1ff698e', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (284, N'5b8754928306a18b68', N'e0e0defbb9ec47f6f7', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (285, N'5b8754928306a18b68', N'e6088004caf0c8cc51', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (286, N'5b8754928306a18b68', N'91f59516cb9dee1e88', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (287, N'5b8754928306a18b68', N'32ded68d89443e808', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (288, N'5b8754928306a18b68', N'd63386c884aeb9f71d', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (289, N'5b8754928306a18b68', N'55e60cfcc9dc49c17e', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (290, N'5b8754928306a18b68', N'aa0bd72b729fab6e9e', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (291, N'5b8754928306a18b68', N'5b8754928306a18b68', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (292, N'5b8754928306a18b68', N'157e3e9278e32aba3e', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (293, N'5b8754928306a18b68', N'5eff3a5bfc0687351e', 5)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (294, N'7cfe354d9a64bf8173', N'ef5fe98c6b9f313075', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (295, N'7cfe354d9a64bf8173', N'd63386c884aeb9f71d', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (296, N'7cfe354d9a64bf8173', N'5eff3a5bfc0687351e', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (297, N'7cfe354d9a64bf8173', N'6b503743a13d778200', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (298, N'7cfe354d9a64bf8173', N'47be2887786891367e', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (299, N'7cfe354d9a64bf8173', N'32ded68d89443e808', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (300, N'7cfe354d9a64bf8173', N'6edf0be4b2267df1fa', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (301, N'7cfe354d9a64bf8173', N'5b8754928306a18b68', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (302, N'7cfe354d9a64bf8173', N'e22d2eabc2d4c19688', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (303, N'7cfe354d9a64bf8173', N'cbc4bd40cd1687754', 8)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (304, N'7cfe354d9a64bf8173', N'2813e59cf6c1ff698e', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (305, N'7cfe354d9a64bf8173', N'e6088004caf0c8cc51', 6)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (306, N'7cfe354d9a64bf8173', N'157e3e9278e32aba3e', 1)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (307, N'7cfe354d9a64bf8173', N'406539987dd9b679c0', 3)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (308, N'7cfe354d9a64bf8173', N'91f59516cb9dee1e88', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (309, N'e6088004caf0c8cc51', N'5dc768b2f067c56f77', 7)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (310, N'e6088004caf0c8cc51', N'cbc4bd40cd1687754', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (311, N'e6088004caf0c8cc51', N'6edf0be4b2267df1fa', 9)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (312, N'e6088004caf0c8cc51', N'aa0bd72b729fab6e9e', 4)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (313, N'e6088004caf0c8cc51', N'47be2887786891367e', 2)
GO
INSERT [dbo].[google_gmail_emails] ([id], [from_user], [to_user], [day]) VALUES (314, N'e6088004caf0c8cc51', N'e6088004caf0c8cc51', 5)
GO