Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 143.68 KB | None | 0 0
  1. DROP TABLE IF EXISTS CS130TripAdvisor;
  2.  
  3. CREATE TABLE cs130tripadvisor
  4. (
  5. userid integer NOT NULL,
  6. country text NOT NULL,
  7. continent text NOT NULL,
  8. reviews integer NOT NULL,
  9. helpvotes integer NOT NULL,
  10. stay text NOT NULL,
  11. traveller text NOT NULL,
  12. casino character varying(3) NOT NULL,
  13. hotelname text NOT NULL,
  14. rooms integer NOT NULL,
  15. reviewmonth text NOT NULL,
  16. rating integer,
  17. reviewtime time,
  18. CONSTRAINT cs130tripadvisor_pkey PRIMARY KEY (userid)
  19. );
  20.  
  21. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (463, 'USA', 'North America', 56, 54, 'Mar-May', 'Business', 'YES', 'Paris Las Vegas', 2916, 'April', 2, '20:10:39');
  22. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (376, 'USA', 'North America', 23, 11, 'Jun-Aug', 'Families', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'August', 5, '14:13:50');
  23. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (377, 'Canada', 'North America', 56, 24, 'Sep-Nov', 'Friends', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'September', 3, '13:01:12');
  24. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (380, 'India', 'Asia', 116, 53, 'Sep-Nov', 'Couples', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'October', 5, '12:35:32');
  25. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (262, 'USA', 'North America', 148, 55, 'Sep-Nov', 'Business', 'YES', 'The Cromwell', 5888, 'November', 2, '11:17:22');
  26. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (428, 'UK', 'Europe', 39, 31, 'Sep-Nov', 'Couples', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'October', 4, '04:35:41');
  27. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (429, 'Switzerland', 'Europe', 9, 3, 'Sep-Nov', 'Friends', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'November', 2, '16:56:05');
  28. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (430, 'Australia', 'Oceania', 43, 29, 'Sep-Nov', 'Couples', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'November', 5, '05:03:52');
  29. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (85, 'Australia', 'Oceania', 21, 14, 'Jun-Aug', 'Couples', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'July', 2, '15:18:16');
  30. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (96, 'Canada', 'North America', 21, 48, 'Dec-Feb', 'Couples', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'December', 3, '21:13:13');
  31. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (97, 'UK', 'Europe', 34, 30, 'Dec-Feb', 'Families', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'January', 2, '15:43:30');
  32. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (100, 'Israel', 'Asia', 18, 16, 'Dec-Feb', 'Business', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'February', 2, '20:26:15');
  33. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (104, 'India ', 'Asia', 88, 103, 'Mar-May', 'Business', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'April', 2, '18:54:35');
  34. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (115, 'UK', 'Europe', 22, 6, 'Sep-Nov', 'Friends', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'October', 3, '20:41:03');
  35. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (123, 'Puerto Rico', 'North America', 153, 81, 'Dec-Feb', 'Families', 'YES', 'Caesars Palace', 3348, 'February', 2, '03:57:13');
  36. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (129, 'UK', 'Europe', 15, 39, 'Mar-May', 'Couples', 'YES', 'Caesars Palace', 3348, 'May', 2, '15:47:37');
  37. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (130, 'UK', 'Europe', 63, 35, 'Mar-May', 'Couples', 'YES', 'Caesars Palace', 3348, 'May', 3, '15:35:12');
  38. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (134, 'UK', 'Europe', 59, 37, 'Jun-Aug', 'Families', 'YES', 'Caesars Palace', 3348, 'July', 3, '11:10:49');
  39. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (138, 'USA', 'North America', 10, 7, 'Sep-Nov', 'Couples', 'YES', 'Caesars Palace', 3348, 'September', 3, '03:17:48');
  40. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (142, 'Australia', 'Oceania', 6, 9, 'Sep-Nov', 'Families', 'YES', 'Caesars Palace', 3348, 'November', 2, '21:30:33');
  41. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (143, 'USA', 'North America', 23, 2, 'Dec-Feb', 'Families', 'YES', 'Caesars Palace', 3348, 'December', 2, '07:23:16');
  42. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (146, 'Australia', 'Oceania', 12, 3, 'Dec-Feb', 'Friends', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'January', 3, '21:42:03');
  43. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (148, 'UK', 'Europe', 127, 80, 'Dec-Feb', 'Couples', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'February', 3, '08:24:54');
  44. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (149, 'USA', 'North America', 12, 1, 'Mar-May', 'Couples', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'March', 3, '18:31:48');
  45. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (153, 'Germany', 'Europe', 113, 55, 'Mar-May', 'Families', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'May', 3, '21:33:30');
  46. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (155, 'Germany', 'Europe', 24, 24, 'Jun-Aug', 'Couples', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'June', 2, '14:43:51');
  47. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (157, 'USA', 'North America', 6, 14, 'Jun-Aug', 'Business', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'July', 3, '13:00:11');
  48. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (161, 'UK', 'Europe', 18, 10, 'Sep-Nov', 'Couples', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'September', 2, '03:19:18');
  49. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (172, 'USA', 'North America', 37, 9, 'Dec-Feb', 'Couples', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'February', 2, '10:51:29');
  50. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (178, 'UK', 'Europe', 57, 71, 'Mar-May', 'Business', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'May', 3, '16:52:50');
  51. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (185, 'UK', 'Europe', 52, 78, 'Sep-Nov', 'Friends', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'September', 2, '18:00:16');
  52. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (196, 'USA', 'North America', 18, 15, 'Dec-Feb', 'Couples', 'YES', 'Wynn Las Vegas', 2700, 'February', 2, '11:28:58');
  53. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (201, 'Singapore', 'Asia', 16, 16, 'Mar-May', 'Solo', 'YES', 'Wynn Las Vegas', 2700, 'May', 2, '14:01:26');
  54. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (210, 'Canada', 'North America', 40, 26, 'Sep-Nov', 'Friends', 'YES', 'Wynn Las Vegas', 2700, 'September', 3, '18:34:55');
  55. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (212, 'UK', 'Europe', 8, 16, 'Sep-Nov', 'Couples', 'YES', 'Wynn Las Vegas', 2700, 'October', 2, '13:10:17');
  56. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (217, 'UK', 'Europe', 21, 13, 'Dec-Feb', 'Solo', 'YES', 'Trump International Hotel Las Vegas', 1282, 'January', 3, '18:51:13');
  57. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (227, 'USA', 'North America', 38, 16, 'Jun-Aug', 'Couples', 'YES', 'Trump International Hotel Las Vegas', 1282, 'June', 2, '17:13:52');
  58. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (231, 'Iran', 'Asia', 3, 2, 'Jun-Aug', 'Couples', 'YES', 'Trump International Hotel Las Vegas', 1282, 'August', 2, '10:22:49');
  59. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (234, 'Egypt', 'Africa', 2, 15, 'Sep-Nov', 'Families', 'YES', 'Trump International Hotel Las Vegas', 1282, 'September', 3, '08:17:59');
  60. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (238, 'Australia', 'Oceania', 35, 17, 'Sep-Nov', 'Families', 'YES', 'Trump International Hotel Las Vegas', 1282, 'November', 2, '08:55:28');
  61. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (249, 'USA', 'North America', 235, 267, 'Mar-May', 'Friends', 'YES', 'The Cromwell', 5888, 'May', 3, '07:59:22');
  62. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (251, 'USA', 'North America', 2, 2, 'Jun-Aug', 'Friends', 'YES', 'The Cromwell', 5888, 'June', 3, '22:01:29');
  63. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (261, 'Canada', 'North America', 49, 53, 'Sep-Nov', 'Couples', 'YES', 'The Cromwell', 5888, 'November', 3, '05:45:02');
  64. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (265, 'Thailand', 'Asia', 3, 20, 'Dec-Feb', 'Business', 'YES', 'Encore at wynn Las Vegas', 2034, 'January', 2, '03:17:17');
  65. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (294, 'Netherlands', 'Europe', 92, 18, 'Mar-May', 'Couples', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'May', 2, '19:05:52');
  66. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (305, 'Canada', 'Europe', 112, 41, 'Sep-Nov', 'Families', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'July', 3, '07:42:16');
  67. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (352, 'USA', 'North America', 11, 19, 'Jun-Aug', 'Couples', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'August', 2, '17:04:54');
  68. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (357, 'USA', 'North America', 167, 119, 'Sep-Nov', 'Couples', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'November', 3, '11:04:23');
  69. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (361, 'USA', 'North America', 65, 72, 'Dec-Feb', 'Business', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'January', 2, '16:53:05');
  70. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (371, 'USA', 'North America', 31, 24, 'Jun-Aug', 'Couples', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'June', 3, '18:22:43');
  71. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (378, 'USA', 'North America', 290, 300, 'Sep-Nov', 'Business', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'September', 3, '08:58:15');
  72. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (345, 'India', 'Asia', 1, 3, 'Mar-May', 'Families', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'May', 2, '22:16:21');
  73. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (379, 'Australia', 'Oceania', 26, 9, 'Sep-Nov', 'Families', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'October', 3, '16:28:05');
  74. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (381, 'Czech Republic', 'Europe', 14, 15, 'Sep-Nov', 'Business', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'November', 2, '15:23:10');
  75. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (208, 'Finland', 'Europe', 18, 25, 'Jun-Aug', 'Solo', 'YES', 'Wynn Las Vegas', 2700, 'August', 3, '17:11:29');
  76. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (382, 'USA', 'North America', 13, 1, 'Sep-Nov', 'Business', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'November', 3, '14:24:54');
  77. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (383, 'USA', 'North America', 20, 25, 'Dec-Feb', 'Couples', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'December', 3, '06:30:21');
  78. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (413, 'USA', 'North America', 9, 13, 'Mar-May', 'Couples', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'March', 2, '06:34:59');
  79. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (414, 'USA', 'North America', 19, 5, 'Mar-May', 'Couples', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'March', 2, '15:44:13');
  80. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (424, 'UK', 'Europe', 21, 15, 'Jun-Aug', 'Couples', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'August', 3, '15:21:51');
  81. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (425, 'UK', 'Europe', 56, 14, 'Sep-Nov', 'Couples', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'September', 3, '21:27:49');
  82. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (12, 'Australia', 'Oceania', 20, 24, 'Jun-Aug', 'Friends', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'June', 2, '10:07:48');
  83. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (13, 'USA', 'North America', 7, 9, 'Jun-Aug', 'Friends', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'July', 4, '03:14:08');
  84. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (14, 'USA', 'North America', 22, 13, 'Jun-Aug', 'Friends', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'July', 4, '11:52:34');
  85. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (15, 'UK', 'Europe', 3, 0, 'Jun-Aug', 'Friends', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'August', 5, '05:06:02');
  86. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (16, 'New Zeland', 'Oceania', 146, 33, 'Jun-Aug', 'Families', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'August', 4, '14:24:26');
  87. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (17, 'Canada', 'North America', 8, 9, 'Sep-Nov', 'Families', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'September', 2, '07:07:06');
  88. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (18, 'USA', 'North America', 9, 1, 'Sep-Nov', 'Families', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'September', 5, '20:19:55');
  89. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (19, 'Canada', 'North America', 41, 19, 'Sep-Nov', 'Couples', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'October', 3, '22:47:15');
  90. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (22, 'New Zeland', 'Oceania', 4, 3, 'Sep-Nov', 'Couples', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'November', 5, '13:25:06');
  91. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (23, 'UK', 'Europe', 18, 19, 'Dec-Feb', 'Families', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'December', 2, '05:38:42');
  92. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (24, 'USA', 'North America', 4, 3, 'Dec-Feb', 'Couples', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'December', 3, '07:09:56');
  93. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (25, 'Ireland', 'Europe', 29, 15, 'Dec-Feb', 'Couples', 'YES', 'Excalibur Hotel & Casino', 3981, 'January', 2, '11:49:55');
  94. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (26, 'USA', 'North America', 114, 52, 'Dec-Feb', 'Business', 'YES', 'Excalibur Hotel & Casino', 3981, 'January', 4, '09:23:45');
  95. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (27, 'Canada', 'North America', 30, 17, 'Dec-Feb', 'Couples', 'YES', 'Excalibur Hotel & Casino', 3981, 'February', 3, '08:27:13');
  96. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (28, 'UK', 'Europe', 87, 36, 'Dec-Feb', 'Business', 'YES', 'Excalibur Hotel & Casino', 3981, 'February', 5, '07:19:06');
  97. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (29, 'USA', 'North America', 26, 28, 'Mar-May', 'Solo', 'YES', 'Excalibur Hotel & Casino', 3981, 'March', 4, '15:06:01');
  98. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (30, 'Ireland', 'Europe', 8, 9, 'Mar-May', 'Couples', 'YES', 'Excalibur Hotel & Casino', 3981, 'March', 3, '23:32:08');
  99. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (31, 'Canada', 'North America', 11, 13, 'Mar-May', 'Couples', 'YES', 'Excalibur Hotel & Casino', 3981, 'April', 4, '16:23:30');
  100. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (34, 'Egypt', 'Africa', 13, 8, 'Mar-May', 'Friends', 'YES', 'Excalibur Hotel & Casino', 3981, 'May', 3, '08:22:25');
  101. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (36, 'Finland', 'Europe', 20, 4, 'Jun-Aug', 'Couples', 'YES', 'Excalibur Hotel & Casino', 3981, 'June', 3, '18:18:10');
  102. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (37, 'USA', 'North America', 70, 24, 'Jun-Aug', 'Friends', 'YES', 'Excalibur Hotel & Casino', 3981, 'July', 4, '23:21:46');
  103. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (40, 'USA', 'North America', 24, 9, 'Jun-Aug', 'Families', 'YES', 'Excalibur Hotel & Casino', 3981, 'August', 4, '15:08:15');
  104. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (41, 'Jordan', 'Europe', 29, 21, 'Sep-Nov', 'Business', 'YES', 'Excalibur Hotel & Casino', 3981, 'September', 3, '22:13:35');
  105. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (42, 'Canada', 'North America', 20, 59, 'Sep-Nov', 'Couples', 'YES', 'Excalibur Hotel & Casino', 3981, 'September', 5, '23:34:29');
  106. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (43, 'Netherlands', 'Europe', 3, 3, 'Sep-Nov', 'Families', 'YES', 'Excalibur Hotel & Casino', 3981, 'October', 5, '19:38:36');
  107. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (44, 'Ireland', 'Europe', 47, 27, 'Sep-Nov', 'Friends', 'YES', 'Excalibur Hotel & Casino', 3981, 'October', 2, '05:11:53');
  108. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (45, 'USA', 'North America', 35, 19, 'Sep-Nov', 'Families', 'YES', 'Excalibur Hotel & Casino', 3981, 'November', 3, '15:42:02');
  109. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (46, 'UK', 'Europe', 6, 4, 'Sep-Nov', 'Friends', 'YES', 'Excalibur Hotel & Casino', 3981, 'November', 5, '11:23:46');
  110. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (47, 'UK', 'Europe', 74, 54, 'Dec-Feb', 'Couples', 'YES', 'Excalibur Hotel & Casino', 3981, 'December', 5, '03:03:01');
  111. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (48, 'Syria', 'Asia', 34, 30, 'Dec-Feb', 'Solo', 'YES', 'Excalibur Hotel & Casino', 3981, 'December', 4, '02:13:09');
  112. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (49, 'UK', 'Europe', 576, 340, 'Dec-Feb', 'Couples', 'YES', 'Monte Carlo Resort&Casino', 3003, 'January', 4, '12:37:55');
  113. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (50, 'USA', 'North America', 20, 11, 'Dec-Feb', 'Solo', 'YES', 'Monte Carlo Resort&Casino', 3003, 'January', 2, '12:55:36');
  114. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (51, 'USA', 'North America', 418, 132, 'Dec-Feb', 'Couples', 'YES', 'Monte Carlo Resort&Casino', 3003, 'February', 5, '05:19:11');
  115. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (52, 'USA', 'North America', 73, 22, 'Dec-Feb', 'Couples', 'YES', 'Monte Carlo Resort&Casino', 3003, 'February', 5, '03:25:40');
  116. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (53, 'Canada', 'North America', 30, 32, 'Mar-May', 'Couples', 'YES', 'Monte Carlo Resort&Casino', 3003, 'March', 2, '18:02:43');
  117. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (55, 'Scotland', 'Europe', 24, 13, 'Mar-May', 'Couples', 'YES', 'Monte Carlo Resort&Casino', 3003, 'April', 3, '02:02:26');
  118. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (56, 'South Africa', 'Africa', 54, 16, 'Mar-May', 'Business', 'YES', 'Monte Carlo Resort&Casino', 3003, 'April', 4, '02:36:15');
  119. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (57, 'Australia', 'Oceania', 20, 11, 'Mar-May', 'Couples', 'YES', 'Monte Carlo Resort&Casino', 3003, 'May', 4, '07:51:09');
  120. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (59, 'Ireland', 'Europe', 7, 7, 'Jun-Aug', 'Couples', 'YES', 'Monte Carlo Resort&Casino', 3003, 'June', 3, '05:41:09');
  121. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (60, 'Canada', 'North America', 13, 15, 'Jun-Aug', 'Friends', 'YES', 'Monte Carlo Resort&Casino', 3003, 'June', 2, '07:46:11');
  122. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (61, 'UK', 'Europe', 10, 4, 'Jun-Aug', 'Families', 'YES', 'Monte Carlo Resort&Casino', 3003, 'July', 3, '17:41:04');
  123. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (63, 'Swiss', 'Europe', 36, 36, 'Jun-Aug', 'Solo', 'YES', 'Monte Carlo Resort&Casino', 3003, 'August', 3, '13:04:54');
  124. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (75, 'Canada', 'North America', 19, 167, 'Dec-Feb', 'Friends', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'February', 4, '14:13:25');
  125. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (76, 'USA', 'North America', 17, 16, 'Dec-Feb', 'Solo', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'February', 2, '23:00:11');
  126. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (77, 'USA', 'North America', 43, 20, 'Mar-May', 'Couples', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'March', 5, '04:34:15');
  127. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (78, 'Canada', 'North America', 12, 3, 'Mar-May', 'Friends', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'March', 3, '14:08:52');
  128. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (80, 'Australia', 'Oceania', 16, 16, 'Mar-May', 'Families', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'April', 4, '15:47:00');
  129. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (81, 'India', 'Asia', 12, 25, 'Mar-May', 'Families', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'May', 5, '10:56:40');
  130. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (82, 'Germany', 'Europe', 10, 5, 'Mar-May', 'Friends', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'May', 5, '08:50:21');
  131. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (83, 'USA', 'North America', 27, 16, 'Jun-Aug', 'Families', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'June', 3, '15:32:06');
  132. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (84, 'Canada', 'North America', 6, 5, 'Jun-Aug', 'Couples', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'June', 2, '15:58:46');
  133. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (86, 'Malaysia', 'Asia', 43, 27, 'Jun-Aug', 'Solo', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'July', 5, '17:59:56');
  134. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (87, 'Mexico', 'South America', 97, 37, 'Jun-Aug', 'Couples', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'August', 5, '07:03:40');
  135. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (88, 'UK', 'Europe', 7, 4, 'Jun-Aug', 'Couples', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'August', 5, '14:35:40');
  136. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (269, 'USA', 'North America', 16, 23, 'Mar-May', 'Couples', 'YES', 'Encore at wynn Las Vegas', 2034, 'March', 2, '17:57:45');
  137. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (275, 'UK', 'Europe', 28, 30, 'Jun-Aug', 'Couples', 'YES', 'Encore at wynn Las Vegas', 2034, 'June', 3, '03:05:36');
  138. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (276, 'USA', 'North America', 34, 26, 'Jun-Aug', 'Business', 'YES', 'Encore at wynn Las Vegas', 2034, 'June', 2, '17:47:34');
  139. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (340, 'USA', 'North America', 608, 319, 'Dec-Feb', 'Business', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'February', 3, '19:25:55');
  140. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (343, 'Brazil', 'South America', 11, 9, 'Mar-May', 'Couples', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'April', 3, '03:58:26');
  141. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (344, 'USA', 'North America', 39, 13, 'Mar-May', 'Couples', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'April', 4, '04:38:34');
  142. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (347, 'Malaysia', 'Asia', 119, 46, 'Jun-Aug', 'Friends', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'June', 4, '04:15:57');
  143. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (349, 'Germany', 'Europe', 55, 134, 'Jun-Aug', 'Couples', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'July', 3, '19:17:29');
  144. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (103, 'Ireland', 'Europe', 19, 28, 'Mar-May', 'Couples', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'April', 3, '11:57:20');
  145. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (105, 'New Zeland', 'Oceania', 8, 0, 'Mar-May', 'Couples', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'May', 2, '04:47:05');
  146. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (106, 'Belgium', 'Europe', 39, 31, 'Mar-May', 'Friends', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'May', 2, '02:28:06');
  147. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (107, 'UK', 'Europe', 130, 61, 'Jun-Aug', 'Business', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'June', 3, '09:52:49');
  148. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (173, 'Canada', 'North America', 10, 7, 'Mar-May', 'Families', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'March', 5, '11:19:54');
  149. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (174, 'Canada', 'North America', 36, 80, 'Mar-May', 'Families', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'March', 4, '13:03:02');
  150. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (175, 'USA', 'North America', 31, 14, 'Mar-May', 'Couples', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'April', 2, '16:33:15');
  151. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (176, 'Canada', 'North America', 66, 60, 'Mar-May', 'Couples', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'April', 3, '22:24:23');
  152. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (177, 'France', 'Europe', 17, 8, 'Mar-May', 'Couples', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'May', 5, '02:17:09');
  153. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (179, 'USA', 'North America', 42, 22, 'Jun-Aug', 'Friends', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'June', 4, '03:32:11');
  154. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (180, 'USA', 'North America', 28, 14, 'Jun-Aug', 'Couples', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'June', 5, '02:01:51');
  155. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (181, 'Spain', 'Europe', 19, 10, 'Jun-Aug', 'Friends', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'July', 3, '06:58:08');
  156. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (182, 'USA', 'North America', 20, 21, 'Jun-Aug', 'Families', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'July', 2, '04:13:17');
  157. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (183, 'UK', 'Europe', 75, 93, 'Jun-Aug', 'Friends', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'August', 2, '03:55:03');
  158. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (184, 'USA', 'North America', 91, 26, 'Jun-Aug', 'Business', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'August', 3, '22:19:56');
  159. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (204, 'USA', 'North America', 5, 4, 'Jun-Aug', 'Couples', 'YES', 'Wynn Las Vegas', 2700, 'June', 5, '17:43:25');
  160. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (481, 'Canada', 'North America', 20, 17, 'Dec-Feb', 'Couples', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'January', 4, '17:16:44');
  161. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (482, 'USA', 'North America', 15, 4, 'Dec-Feb', 'Families', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'January', 3, '05:50:26');
  162. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (483, 'Italy', 'Europe', 189, 129, 'Dec-Feb', 'Solo', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'February', 5, '03:40:38');
  163. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (484, 'USA', 'North America', 25, 27, 'Dec-Feb', 'Couples', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'February', 3, '08:34:22');
  164. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (485, 'USA', 'North America', 33, 12, 'Mar-May', 'Business', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'March', 4, '08:37:50');
  165. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (486, 'USA', 'North America', 14, 13, 'Mar-May', 'Friends', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'March', 5, '02:21:19');
  166. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (487, 'USA', 'North America', 38, 47, 'Mar-May', 'Business', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'April', 4, '15:36:47');
  167. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (488, 'Egypt', 'Africa', 169, 85, 'Mar-May', 'Solo', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'April', 4, '22:52:58');
  168. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (489, 'USA', 'North America', 20, 21, 'Mar-May', 'Friends', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'May', 3, '12:09:26');
  169. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (236, 'Australia', 'Oceania', 11, 17, 'Sep-Nov', 'Couples', 'YES', 'Trump International Hotel Las Vegas', 1282, 'October', 5, '04:50:21');
  170. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (237, 'Germany', 'Europe', 1, 1, 'Sep-Nov', 'Couples', 'YES', 'Trump International Hotel Las Vegas', 1282, 'November', 3, '13:38:29');
  171. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (239, 'USA', 'North America', 110, 76, 'Dec-Feb', 'Business', 'YES', 'Trump International Hotel Las Vegas', 1282, 'December', 3, '22:27:21');
  172. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (240, 'USA', 'North America', 53, 24, 'Dec-Feb', 'Couples', 'YES', 'Trump International Hotel Las Vegas', 1282, 'December', 5, '14:35:20');
  173. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (241, 'Saudi Arabia', 'Asia', 320, 102, 'Dec-Feb', 'Business', 'YES', 'The Cromwell', 5888, 'January', 2, '21:49:22');
  174. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (4, 'UK', 'Europe', 14, 14, 'Mar-May', 'Friends', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'February', 2, '20:00:24');
  175. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (1, 'USA', 'North America', 11, 13, 'Dec-Feb', 'Friends', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'January', 2, '18:27:16');
  176. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (2, 'USA', 'North America', 119, 75, 'Dec-Feb', 'Business', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'January', 3, '12:35:32');
  177. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (3, 'USA', 'North America', 36, 25, 'Mar-May', 'Families', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'February', 5, '17:58:26');
  178. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (5, 'Canada', 'North America', 5, 2, 'Mar-May', 'Solo', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'March', 2, '19:42:16');
  179. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (202, 'UK', 'Europe', 19, 5, 'Mar-May', 'Couples', 'YES', 'Wynn Las Vegas', 2700, 'May', 5, '17:21:01');
  180. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (476, 'USA', 'North America', 6, 6, 'Sep-Nov', 'Couples', 'YES', 'Paris Las Vegas', 2916, 'October', 2, '16:25:14');
  181. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (362, 'USA', 'North America', 8, 3, 'Dec-Feb', 'Couples', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'January', 3, '14:10:37');
  182. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (363, 'UK', 'Europe', 61, 26, 'Dec-Feb', 'Couples', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'February', 5, '18:04:05');
  183. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (364, 'USA', 'North America', 3, 8, 'Dec-Feb', 'Families', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'February', 3, '22:09:10');
  184. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (365, 'USA', 'North America', 66, 21, 'Mar-May', 'Friends', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'March', 4, '18:35:00');
  185. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (366, 'Hawaii', 'North America', 9, 4, 'Mar-May', 'Couples', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'March', 2, '06:52:46');
  186. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (367, 'Hawaii', 'North America', 82, 61, 'Mar-May', 'Families', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'April', 5, '20:03:03');
  187. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (368, 'Canada', 'North America', 113, 33, 'Mar-May', 'Families', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'April', 3, '14:05:20');
  188. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (369, 'USA', 'North America', 11, 12, 'Mar-May', 'Friends', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'May', 3, '20:54:02');
  189. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (370, 'Canada', 'North America', 2, 1, 'Mar-May', 'Families', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'May', 2, '04:17:30');
  190. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (372, 'Australia', 'Oceania', 32, 22, 'Jun-Aug', 'Couples', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'June', 3, '23:36:21');
  191. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (373, 'USA', 'North America', 56, 25, 'Jun-Aug', 'Families', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'July', 3, '22:48:20');
  192. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (374, 'Canada', 'North America', 45, 22, 'Jun-Aug', 'Couples', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'July', 3, '13:33:16');
  193. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (375, 'USA', 'North America', 17, 4, 'Jun-Aug', 'Families', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'August', 2, '04:05:56');
  194. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (416, 'Australia', 'Oceania', 22, 26, 'Mar-May', 'Couples', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'April', 2, '12:38:16');
  195. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (417, 'Australia', 'Oceania', 83, 26, 'Mar-May', 'Families', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'May', 4, '08:47:22');
  196. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (418, 'UK', 'Europe', 20, 9, 'Mar-May', 'Couples', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'May', 2, '08:03:49');
  197. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (419, 'USA', 'North America', 7, 6, 'Jun-Aug', 'Couples', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'June', 5, '16:35:18');
  198. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (420, 'USA', 'North America', 95, 46, 'Jun-Aug', 'Business', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'June', 2, '18:49:42');
  199. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (421, 'Australia', 'Oceania', 15, 19, 'Jun-Aug', 'Couples', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'July', 3, '10:21:17');
  200. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (422, 'UK', 'Europe', 13, 12, 'Jun-Aug', 'Couples', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'July', 4, '09:31:11');
  201. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (423, 'Canada', 'North America', 19, 24, 'Jun-Aug', 'Families', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'August', 5, '23:13:46');
  202. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (426, 'UK', 'Europe', 29, 15, 'Sep-Nov', 'Couples', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'September', 5, '08:44:19');
  203. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (427, 'Brazil', 'South America', 20, 8, 'Sep-Nov', 'Couples', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'October', 4, '11:58:42');
  204. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (289, 'USA', 'Europe', 4, 2, 'Dec-Feb', 'Couples', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'June', 2, '08:04:39');
  205. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (293, 'UK', 'Europe', 60, 42, 'Mar-May', 'Couples', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'August', 2, '18:07:14');
  206. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (297, 'Brazil', 'Europe', 37, 38, 'Mar-May', 'Families', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'September', 2, '16:33:58');
  207. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (308, 'USA', 'Europe', 9, 11, 'Sep-Nov', 'Business', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'September', 4, '06:31:13');
  208. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (353, 'Australia', 'Oceania', 27, 16, 'Sep-Nov', 'Couples', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'September', 3, '11:51:34');
  209. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (354, 'USA', 'North America', 13, 6, 'Sep-Nov', 'Couples', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'September', 2, '22:27:31');
  210. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (355, 'UK', 'Europe', 19, 14, 'Sep-Nov', 'Couples', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'October', 5, '15:06:47');
  211. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (356, 'Canada', 'North America', 38, 17, 'Sep-Nov', 'Business', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'October', 5, '06:53:35');
  212. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (358, 'USA', 'North America', 28, 9, 'Sep-Nov', 'Business', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'November', 2, '20:49:58');
  213. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (359, 'Canada', 'North America', 9, 5, 'Dec-Feb', 'Families', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'December', 3, '08:04:19');
  214. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (360, 'USA', 'North America', 13, 4, 'Dec-Feb', 'Friends', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'December', 4, '08:42:16');
  215. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (252, 'USA', 'North America', 2, 1, 'Jun-Aug', 'Couples', 'YES', 'The Cromwell', 5888, 'June', 3, '14:07:49');
  216. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (253, 'USA', 'North America', 21, 53, 'Jun-Aug', 'Couples', 'YES', 'The Cromwell', 5888, 'July', 5, '13:11:43');
  217. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (254, 'USA', 'North America', 4, 16, 'Jun-Aug', 'Friends', 'YES', 'The Cromwell', 5888, 'July', 4, '17:34:55');
  218. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (255, 'Netherlands', 'Europe', 184, 70, 'Jun-Aug', 'Couples', 'YES', 'The Cromwell', 5888, 'August', 3, '02:29:50');
  219. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (256, 'UK', 'Europe', 262, 150, 'Jun-Aug', 'Families', 'YES', 'The Cromwell', 5888, 'August', 4, '19:16:23');
  220. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (257, 'USA', 'North America', 69, 17, 'Sep-Nov', 'Couples', 'YES', 'The Cromwell', 5888, 'September', 2, '12:05:28');
  221. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (302, 'UK', 'Europe', 10, 9, 'Jun-Aug', 'Families', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'January', 2, '17:03:49');
  222. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (306, 'USA', 'Europe', 28, 14, 'Sep-Nov', 'Solo', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'February', 4, '02:10:55');
  223. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (307, 'UK', 'Europe', 11, 16, 'Sep-Nov', 'Couples', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'February', 3, '21:57:03');
  224. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (295, 'Australia', 'Europe', 106, 58, 'Mar-May', 'Business', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'March', 4, '15:54:40');
  225. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (298, 'USA', 'Europe', 70, 19, 'Mar-May', 'Couples', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'March', 2, '15:17:43');
  226. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (291, 'Mexico', 'Europe', 10, 1, 'Dec-Feb', 'Business', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'April', 4, '05:13:57');
  227. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (301, 'Finland', 'Europe', 39, 9, 'Jun-Aug', 'Families', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'April', 3, '13:07:57');
  228. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (304, 'UK', 'Europe', 48, 19, 'Jun-Aug', 'Families', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'April', 5, '21:22:03');
  229. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (303, 'USA', 'Europe', 78, 24, 'Jun-Aug', 'Couples', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'May', 2, '11:56:13');
  230. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (466, 'USA', 'North America', 137, 51, 'Mar-May', 'Couples', 'YES', 'Paris Las Vegas', 2916, 'May', 4, '15:03:23');
  231. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (467, 'Australia', 'Oceania', 30, 38, 'Jun-Aug', 'Couples', 'YES', 'Paris Las Vegas', 2916, 'June', 5, '06:39:45');
  232. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (468, 'Costa Rica', 'North America', 130, 49, 'Jun-Aug', 'Couples', 'YES', 'Paris Las Vegas', 2916, 'June', 3, '06:47:28');
  233. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (469, 'USA', 'North America', 50, 23, 'Jun-Aug', 'Couples', 'YES', 'Paris Las Vegas', 2916, 'July', 3, '07:06:26');
  234. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (470, 'UK', 'Europe', 22, 11, 'Jun-Aug', 'Families', 'YES', 'Paris Las Vegas', 2916, 'July', 3, '02:45:33');
  235. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (471, 'Egypt', 'Africa', 85, 65, 'Jun-Aug', 'Families', 'YES', 'Paris Las Vegas', 2916, 'August', 4, '23:12:56');
  236. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (472, 'USA', 'North America', 73, 26, 'Jun-Aug', 'Couples', 'YES', 'Paris Las Vegas', 2916, 'August', 2, '02:54:56');
  237. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (473, 'USA', 'North America', 20, 27, 'Sep-Nov', 'Couples', 'YES', 'Paris Las Vegas', 2916, 'September', 4, '03:45:18');
  238. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (474, 'Canada', 'North America', 13, 13, 'Sep-Nov', 'Couples', 'YES', 'Paris Las Vegas', 2916, 'September', 4, '11:10:29');
  239. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (475, 'Canada', 'North America', 18, 10, 'Sep-Nov', 'Couples', 'YES', 'Paris Las Vegas', 2916, 'October', 2, '18:57:06');
  240. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (503, 'USA', 'North America', 9, 5, 'Dec-Feb', 'Families', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'December', 4, '15:23:19');
  241. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (400, 'Canada', 'Europe', 12, 6, 'Jun-Aug', 'Couples', 'NO', 'Wyndham Grand Desert', 1654, 'February', 5, '05:55:26');
  242. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (326, 'Denmark', 'Europe', 240, 115, 'Jun-Aug', 'Couples', 'YES', 'Marriott''s Grand Chateau', 100, 'March', 2, '19:26:25');
  243. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (387, 'USA', 'Europe', 60, 33, 'Dec-Feb', 'Couples', 'NO', 'Wyndham Grand Desert', 1654, 'March', 2, '19:59:56');
  244. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (397, 'UK', 'Europe', 6, 14, 'Jun-Aug', 'Families', 'NO', 'Wyndham Grand Desert', 1654, 'March', 3, '17:30:04');
  245. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (431, 'Singapore', 'Asia', 16, 11, 'Dec-Feb', 'Families', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'December', 3, '21:24:36');
  246. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (432, 'USA', 'North America', 6, 12, 'Dec-Feb', 'Couples', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'December', 4, '06:56:30');
  247. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (434, 'USA', 'North America', 15, 13, 'Dec-Feb', 'Families', 'YES', 'Bellagio Las Vegas', 3933, 'January', 3, '05:31:01');
  248. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (435, 'USA', 'North America', 30, 26, 'Dec-Feb', 'Couples', 'YES', 'Bellagio Las Vegas', 3933, 'February', 4, '13:25:21');
  249. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (437, 'India', 'Asia', 44, 53, 'Mar-May', 'Couples', 'YES', 'Bellagio Las Vegas', 3933, 'March', 4, '11:24:17');
  250. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (438, 'USA', 'North America', 30, 17, 'Mar-May', 'Business', 'YES', 'Bellagio Las Vegas', 3933, 'March', 5, '13:18:29');
  251. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (439, 'Ireland', 'Europe', 23, 18, 'Mar-May', 'Business', 'YES', 'Bellagio Las Vegas', 3933, 'April', 4, '06:29:51');
  252. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (441, 'UK', 'Europe', 12, 16, 'Mar-May', 'Friends', 'YES', 'Bellagio Las Vegas', 3933, 'May', 4, '16:52:37');
  253. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (442, 'UK', 'Europe', 15, 17, 'Mar-May', 'Couples', 'YES', 'Bellagio Las Vegas', 3933, 'May', 2, '09:30:22');
  254. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (443, 'UK', 'Europe', 5, 5, 'Jun-Aug', 'Families', 'YES', 'Bellagio Las Vegas', 3933, 'June', 5, '03:03:49');
  255. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (444, 'USA', 'North America', 32, 11, 'Jun-Aug', 'Business', 'YES', 'Bellagio Las Vegas', 3933, 'June', 5, '09:41:11');
  256. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (445, 'USA', 'North America', 28, 23, 'Jun-Aug', 'Couples', 'YES', 'Bellagio Las Vegas', 3933, 'July', 2, '21:40:59');
  257. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (447, 'USA', 'North America', 11, 2, 'Jun-Aug', 'Solo', 'YES', 'Bellagio Las Vegas', 3933, 'August', 2, '19:07:54');
  258. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (448, 'Scotland', 'Europe', 102, 37, 'Jun-Aug', 'Families', 'YES', 'Bellagio Las Vegas', 3933, 'August', 5, '08:13:40');
  259. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (449, 'Ireland', 'Europe', 13, 2, 'Sep-Nov', 'Couples', 'YES', 'Bellagio Las Vegas', 3933, 'September', 2, '16:39:18');
  260. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (451, 'UK', 'Europe', 26, 42, 'Sep-Nov', 'Couples', 'YES', 'Bellagio Las Vegas', 3933, 'October', 2, '02:24:00');
  261. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (452, 'UK', 'Europe', 13, 12, 'Sep-Nov', 'Couples', 'YES', 'Bellagio Las Vegas', 3933, 'October', 5, '04:40:02');
  262. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (453, 'UK', 'Europe', 26, 43, 'Sep-Nov', 'Friends', 'YES', 'Bellagio Las Vegas', 3933, 'November', 5, '07:07:58');
  263. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (455, 'India', 'Asia', 4, 1, 'Dec-Feb', 'Business', 'YES', 'Bellagio Las Vegas', 3933, 'December', 5, '21:18:03');
  264. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (458, 'Canada', 'North America', 19, 12, 'Dec-Feb', 'Couples', 'YES', 'Paris Las Vegas', 2916, 'January', 4, '06:57:33');
  265. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (459, 'USA', 'North America', 4, 2, 'Dec-Feb', 'Couples', 'YES', 'Paris Las Vegas', 2916, 'February', 4, '07:07:39');
  266. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (460, 'USA', 'North America', 116, 43, 'Dec-Feb', 'Friends', 'YES', 'Paris Las Vegas', 2916, 'February', 2, '20:29:42');
  267. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (461, 'USA', 'North America', 121, 59, 'Mar-May', 'Couples', 'YES', 'Paris Las Vegas', 2916, 'March', 3, '18:30:49');
  268. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (462, 'USA', 'North America', 14, 6, 'Mar-May', 'Couples', 'YES', 'Paris Las Vegas', 2916, 'March', 2, '09:13:35');
  269. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (6, 'Canada', 'North America', 31, 27, 'Mar-May', 'Couples', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'March', 3, '11:06:51');
  270. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (8, 'USA', 'North America', 2, 4, 'Mar-May', 'Families', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'April', 3, '07:55:21');
  271. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (20, 'USA', 'North America', 8, 26, 'Sep-Nov', 'Couples', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'October', 3, '19:49:07');
  272. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (21, 'UK', 'Europe', 10, 2, 'Sep-Nov', 'Couples', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'November', 2, '20:24:14');
  273. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (32, 'Australia', 'Oceania', 4, 2, 'Mar-May', 'Couples', 'YES', 'Excalibur Hotel & Casino', 3981, 'April', 3, '10:31:02');
  274. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (33, 'Canada', 'North America', 56, 7, 'Mar-May', 'Solo', 'YES', 'Excalibur Hotel & Casino', 3981, 'May', 2, '13:08:32');
  275. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (35, 'Australia', 'Oceania', 58, 15, 'Jun-Aug', 'Couples', 'YES', 'Excalibur Hotel & Casino', 3981, 'June', 2, '23:28:07');
  276. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (54, 'USA', 'North America', 63, 17, 'Mar-May', 'Business', 'YES', 'Monte Carlo Resort&Casino', 3003, 'March', 3, '08:18:57');
  277. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (58, 'UK', 'Europe', 41, 24, 'Mar-May', 'Couples', 'YES', 'Monte Carlo Resort&Casino', 3003, 'May', 3, '18:05:03');
  278. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (62, 'New Zeland', 'Oceania', 9, 19, 'Jun-Aug', 'Couples', 'YES', 'Monte Carlo Resort&Casino', 3003, 'July', 2, '05:22:28');
  279. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (69, 'Hungary', 'Europe', 8, 8, 'Sep-Nov', 'Couples', 'YES', 'Monte Carlo Resort&Casino', 3003, 'November', 2, '19:44:18');
  280. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (71, 'Greece', 'Europe', 21, 6, 'Dec-Feb', 'Business', 'YES', 'Monte Carlo Resort&Casino', 3003, 'December', 2, '05:52:39');
  281. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (79, 'USA', 'North America', 15, 7, 'Mar-May', 'Friends', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'April', 3, '16:40:58');
  282. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (433, 'Australia', 'Oceania', 16, 3, 'Dec-Feb', 'Solo', 'YES', 'Bellagio Las Vegas', 3933, 'January', 2, '02:37:28');
  283. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (436, 'USA', 'North America', 41, 111, 'Dec-Feb', 'Business', 'YES', 'Bellagio Las Vegas', 3933, 'February', 2, '20:45:16');
  284. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (440, 'Spain', 'Europe', 3, 8, 'Mar-May', 'Families', 'YES', 'Bellagio Las Vegas', 3933, 'April', 3, '02:34:39');
  285. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (446, 'Korea', 'Asia', 77, 48, 'Jun-Aug', 'Families', 'YES', 'Bellagio Las Vegas', 3933, 'July', 2, '03:41:18');
  286. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (450, 'USA', 'North America', 62, 31, 'Sep-Nov', 'Business', 'YES', 'Bellagio Las Vegas', 3933, 'September', 2, '06:49:46');
  287. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (454, 'Canada', 'North America', 17, 39, 'Sep-Nov', 'Friends', 'YES', 'Bellagio Las Vegas', 3933, 'November', 2, '22:15:38');
  288. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (456, 'Malaysia', 'Asia', 20, 19, 'Dec-Feb', 'Families', 'YES', 'Bellagio Las Vegas', 3933, 'December', 3, '20:49:13');
  289. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (457, 'USA', 'North America', 14, 7, 'Dec-Feb', 'Couples', 'YES', 'Paris Las Vegas', 2916, 'January', 2, '13:03:27');
  290. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (38, 'Kenya', 'Africa', 6, 7, 'Jun-Aug', 'Friends', 'YES', 'Excalibur Hotel & Casino', 3981, 'July', 3, '07:02:05');
  291. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (333, 'Kuwait', 'Europe', 47, 20, 'Sep-Nov', 'Couples', 'YES', 'Marriott''s Grand Chateau', 100, 'January', 3, '10:31:05');
  292. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (39, 'USA', 'North America', 290, 299, 'Jun-Aug', 'Couples', 'YES', 'Excalibur Hotel & Casino', 3981, 'August', 3, '11:09:34');
  293. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (280, 'USA', 'North America', 333, 200, 'Jun-Aug', 'Families', 'YES', 'Encore at wynn Las Vegas', 2034, 'August', 3, '10:03:06');
  294. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (288, 'USA', 'North America', 11, 6, 'Dec-Feb', 'Business', 'YES', 'Encore at wynn Las Vegas', 2034, 'December', 3, '12:29:23');
  295. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (268, 'USA', 'North America', 15, 12, 'Dec-Feb', 'Business', 'YES', 'Encore at wynn Las Vegas', 2034, 'February', 4, '18:50:36');
  296. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (270, 'USA', 'North America', 113, 27, 'Mar-May', 'Friends', 'YES', 'Encore at wynn Las Vegas', 2034, 'March', 5, '10:16:15');
  297. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (271, 'UK', 'Europe', 7, 5, 'Mar-May', 'Families', 'YES', 'Encore at wynn Las Vegas', 2034, 'April', 3, '23:07:19');
  298. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (272, 'Honduras', 'South America', 73, 99, 'Mar-May', 'Friends', 'YES', 'Encore at wynn Las Vegas', 2034, 'April', 2, '08:09:32');
  299. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (273, 'USA', 'North America', 35, 3, 'Mar-May', 'Business', 'YES', 'Encore at wynn Las Vegas', 2034, 'May', 4, '13:35:27');
  300. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (274, 'UK', 'Europe', 139, 86, 'Mar-May', 'Friends', 'YES', 'Encore at wynn Las Vegas', 2034, 'May', 3, '02:56:19');
  301. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (277, 'USA', 'North America', 4, 5, 'Jun-Aug', 'Friends', 'YES', 'Encore at wynn Las Vegas', 2034, 'July', 5, '02:35:34');
  302. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (278, 'USA', 'North America', 32, 14, 'Jun-Aug', 'Families', 'YES', 'Encore at wynn Las Vegas', 2034, 'July', 3, '13:37:54');
  303. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (279, 'UK', 'Europe', 9, 4, 'Jun-Aug', 'Families', 'YES', 'Encore at wynn Las Vegas', 2034, 'August', 5, '03:32:34');
  304. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (281, 'USA', 'North America', 29, 15, 'Sep-Nov', 'Couples', 'YES', 'Encore at wynn Las Vegas', 2034, 'September', 5, '08:26:43');
  305. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (282, 'UK', 'Europe', 85, 68, 'Sep-Nov', 'Friends', 'YES', 'Encore at wynn Las Vegas', 2034, 'September', 5, '17:19:03');
  306. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (283, 'USA', 'North America', 12, 1, 'Sep-Nov', 'Couples', 'YES', 'Encore at wynn Las Vegas', 2034, 'October', 4, '09:18:45');
  307. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (284, 'UK', 'Europe', 34, 7, 'Sep-Nov', 'Business', 'YES', 'Encore at wynn Las Vegas', 2034, 'October', 5, '02:31:07');
  308. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (285, 'India', 'Asia', 13, 8, 'Sep-Nov', 'Couples', 'YES', 'Encore at wynn Las Vegas', 2034, 'November', 4, '06:47:17');
  309. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (286, 'USA', 'North America', 5, 14, 'Sep-Nov', 'Couples', 'YES', 'Encore at wynn Las Vegas', 2034, 'November', 2, '21:32:10');
  310. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (287, 'USA', 'North America', 169, 41, 'Dec-Feb', 'Friends', 'YES', 'Encore at wynn Las Vegas', 2034, 'December', 3, '23:31:18');
  311. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (337, 'USA', 'North America', 167, 119, 'Dec-Feb', 'Couples', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'January', 5, '09:21:32');
  312. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (89, 'UK', 'Europe', 11, 6, 'Sep-Nov', 'Couples', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'September', 5, '12:04:22');
  313. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (90, 'USA', 'North America', 78, 30, 'Sep-Nov', 'Business', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'September', 2, '15:41:38');
  314. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (91, 'Australia', 'Oceania', 12, 4, 'Sep-Nov', 'Families', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'October', 2, '18:18:13');
  315. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (92, 'USA', 'North America', 27, 5, 'Sep-Nov', 'Couples', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'October', 3, '18:54:43');
  316. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (93, 'Thailand', 'Asia', 4, 1, 'Sep-Nov', 'Couples', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'November', 3, '07:37:03');
  317. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (94, 'Australia', 'Oceania', 27, 8, 'Sep-Nov', 'Families', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'November', 4, '10:40:18');
  318. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (95, 'Canada', 'North America', 12, 7, 'Dec-Feb', 'Friends', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'December', 2, '13:17:59');
  319. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (98, 'USA', 'North America', 12, 1, 'Dec-Feb', 'Friends', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'January', 3, '12:40:44');
  320. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (99, 'Phillippines', 'Asia', 79, 51, 'Dec-Feb', 'Couples', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'February', 2, '23:15:59');
  321. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (101, 'Canada', 'North America', 13, 8, 'Mar-May', 'Business', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'March', 3, '07:39:03');
  322. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (102, 'UK', 'Europe', 14, 9, 'Mar-May', 'Couples', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'March', 2, '13:46:20');
  323. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (464, 'Canada', 'North America', 73, 39, 'Mar-May', 'Friends', 'YES', 'Paris Las Vegas', 2916, 'April', 4, '17:26:52');
  324. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (341, 'USA', 'North America', 5, 3, 'Mar-May', 'Friends', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'March', 3, '15:42:10');
  325. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (342, 'USA', 'North America', 26, 34, 'Mar-May', 'Couples', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'March', 2, '02:39:03');
  326. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (346, 'USA', 'North America', 108, 22, 'Mar-May', 'Business', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'May', 2, '12:40:48');
  327. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (348, 'USA', 'North America', 27, 17, 'Jun-Aug', 'Couples', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'June', 3, '02:21:45');
  328. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (350, 'Canada', 'North America', 7, 7, 'Jun-Aug', 'Business', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'July', 3, '02:09:41');
  329. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (351, 'Canada', 'North America', 3, 2, 'Jun-Aug', 'Business', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'August', 3, '18:50:20');
  330. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (338, 'USA', 'North America', 25, 12, 'Dec-Feb', 'Friends', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'January', 2, '13:57:13');
  331. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (339, 'UK', 'Europe', 12, 6, 'Dec-Feb', 'Business', 'YES', 'Tuscany Las Vegas Suites & Casino', 716, 'February', 3, '03:06:00');
  332. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (108, 'Australia', 'Oceania', 79, 105, 'Jun-Aug', 'Friends', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'June', 2, '04:41:43');
  333. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (109, 'UK', 'Europe', 13, 16, 'Jun-Aug', 'Solo', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'July', 5, '09:49:38');
  334. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (110, 'UK', 'Europe', 18, 17, 'Jun-Aug', 'Couples', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'July', 3, '19:57:12');
  335. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (111, 'New Zeland', 'Oceania', 8, 3, 'Jun-Aug', 'Friends', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'August', 5, '18:23:22');
  336. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (112, 'Australia', 'Oceania', 15, 6, 'Jun-Aug', 'Couples', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'August', 4, '04:31:10');
  337. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (113, 'Canada', 'North America', 27, 9, 'Sep-Nov', 'Couples', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'September', 3, '15:15:14');
  338. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (114, 'Australia', 'Oceania', 5, 2, 'Sep-Nov', 'Couples', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'September', 3, '02:23:44');
  339. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (116, 'USA', 'North America', 5, 11, 'Sep-Nov', 'Friends', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'October', 4, '13:11:29');
  340. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (117, 'India', 'Asia', 31, 11, 'Sep-Nov', 'Solo', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'November', 3, '04:56:32');
  341. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (118, 'Netherlands', 'Europe', 33, 8, 'Sep-Nov', 'Friends', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'November', 5, '13:04:29');
  342. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (119, 'UK', 'Europe', 10, 11, 'Dec-Feb', 'Couples', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'December', 3, '12:50:47');
  343. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (120, 'UK', 'Europe', 12, 3, 'Dec-Feb', 'Families', 'YES', 'Tropicana Las Vegas - A Double Tree by Hilton Hotel', 1467, 'December', 3, '10:35:36');
  344. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (122, 'USA', 'North America', 161, 85, 'Dec-Feb', 'Couples', 'YES', 'Caesars Palace', 3348, 'January', 4, '03:14:08');
  345. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (144, 'USA', 'North America', 48, 67, 'Dec-Feb', 'Couples', 'YES', 'Caesars Palace', 3348, 'December', 2, '06:40:59');
  346. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (145, 'Australia', 'Oceania', 16, 14, 'Dec-Feb', 'Friends', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'January', 4, '02:41:05');
  347. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (147, 'Switzerland', 'Europe', 36, 15, 'Dec-Feb', 'Friends', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'February', 5, '03:53:12');
  348. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (150, 'USA', 'North America', 17, 74, 'Mar-May', 'Couples', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'March', 2, '17:21:48');
  349. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (151, 'Ireland', 'Europe', 23, 21, 'Mar-May', 'Friends', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'April', 4, '03:02:51');
  350. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (152, 'USA', 'North America', 102, 45, 'Mar-May', 'Business', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'April', 2, '04:02:53');
  351. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (409, 'Ireland', 'Europe', 31, 20, 'Dec-Feb', 'Business', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'January', 3, '12:35:27');
  352. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (410, 'USA', 'North America', 20, 9, 'Dec-Feb', 'Solo', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'January', 5, '15:00:04');
  353. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (411, 'USA', 'North America', 60, 15, 'Dec-Feb', 'Families', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'February', 3, '05:08:53');
  354. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (154, 'USA', 'North America', 30, 10, 'Mar-May', 'Business', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'May', 4, '08:24:41');
  355. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (156, 'Ireland', 'Europe', 15, 18, 'Jun-Aug', 'Friends', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'June', 3, '16:58:30');
  356. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (158, 'Australia', 'Oceania', 3, 0, 'Jun-Aug', 'Friends', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'July', 5, '07:47:27');
  357. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (159, 'Canada', 'North America', 41, 56, 'Jun-Aug', 'Families', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'August', 5, '10:40:39');
  358. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (160, 'USA', 'North America', 19, 56, 'Jun-Aug', 'Couples', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'August', 2, '12:39:19');
  359. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (162, 'Norway', 'Europe', 6, 7, 'Sep-Nov', 'Couples', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'September', 3, '17:44:48');
  360. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (163, 'USA', 'North America', 103, 98, 'Sep-Nov', 'Couples', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'October', 4, '13:27:45');
  361. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (164, 'UK', 'Europe', 18, 16, 'Sep-Nov', 'Friends', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'October', 3, '13:07:25');
  362. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (165, 'Egypt', 'Africa', 9, 7, 'Sep-Nov', 'Business', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'November', 4, '04:00:57');
  363. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (166, 'USA', 'North America', 50, 45, 'Sep-Nov', 'Business', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'November', 2, '16:09:28');
  364. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (167, 'Canada', 'North America', 4, 8, 'Dec-Feb', 'Couples', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'December', 3, '20:57:04');
  365. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (168, 'USA', 'North America', 7, 8, 'Dec-Feb', 'Families', 'YES', 'The Cosmopolitan Las Vegas', 2959, 'December', 2, '21:58:09');
  366. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (169, 'Mexico', 'North America', 28, 31, 'Dec-Feb', 'Couples', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'January', 2, '10:56:09');
  367. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (170, 'USA', 'North America', 32, 11, 'Dec-Feb', 'Families', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'January', 4, '23:28:14');
  368. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (171, 'Canada', 'North America', 4, 4, 'Dec-Feb', 'Couples', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'February', 3, '13:36:42');
  369. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (186, 'USA', 'North America', 93, 8, 'Sep-Nov', 'Families', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'September', 3, '05:16:08');
  370. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (187, 'Canada', 'North America', 9, 15, 'Sep-Nov', 'Families', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'October', 5, '05:57:57');
  371. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (188, 'Australia', 'Oceania', 5, 9, 'Sep-Nov', 'Couples', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'October', 2, '11:18:43');
  372. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (189, 'Singapore', 'Asia', 37, 10, 'Sep-Nov', 'Friends', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'November', 2, '18:16:12');
  373. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (190, 'Brazil', 'South America', 31, 35, 'Sep-Nov', 'Families', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'November', 5, '09:06:50');
  374. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (205, 'USA', 'North America', 30, 17, 'Jun-Aug', 'Couples', 'YES', 'Wynn Las Vegas', 2700, 'July', 3, '11:38:02');
  375. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (206, 'Canada', 'North America', 7, 10, 'Jun-Aug', 'Couples', 'YES', 'Wynn Las Vegas', 2700, 'July', 2, '14:54:18');
  376. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (207, 'Canada', 'North America', 67, 99, 'Jun-Aug', 'Couples', 'YES', 'Wynn Las Vegas', 2700, 'August', 2, '04:47:23');
  377. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (209, 'Canada', 'North America', 12, 11, 'Sep-Nov', 'Business', 'YES', 'Wynn Las Vegas', 2700, 'September', 3, '22:17:22');
  378. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (211, 'USA', 'North America', 142, 31, 'Sep-Nov', 'Couples', 'YES', 'Wynn Las Vegas', 2700, 'October', 2, '09:02:25');
  379. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (213, 'Costa Rica', 'North America', 15, 3, 'Sep-Nov', 'Business', 'YES', 'Wynn Las Vegas', 2700, 'November', 3, '16:15:08');
  380. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (214, 'UK', 'Europe', 2, 14, 'Sep-Nov', 'Couples', 'YES', 'Wynn Las Vegas', 2700, 'November', 4, '11:48:07');
  381. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (215, 'UK', 'Europe', 10, 10, 'Dec-Feb', 'Couples', 'YES', 'Wynn Las Vegas', 2700, 'December', 3, '11:03:22');
  382. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (216, 'USA', 'North America', 16, 55, 'Dec-Feb', 'Couples', 'YES', 'Wynn Las Vegas', 2700, 'December', 4, '08:47:56');
  383. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (218, 'India', 'Asia', 69, 41, 'Dec-Feb', 'Business', 'YES', 'Trump International Hotel Las Vegas', 1282, 'January', 3, '09:08:30');
  384. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (219, 'USA', 'North America', 33, 8, 'Dec-Feb', 'Business', 'YES', 'Trump International Hotel Las Vegas', 1282, 'February', 5, '09:24:50');
  385. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (220, 'USA', 'North America', 1, 2, 'Dec-Feb', 'Families', 'YES', 'Trump International Hotel Las Vegas', 1282, 'February', 3, '17:44:05');
  386. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (221, 'USA', 'North America', 49, 23, 'Mar-May', 'Couples', 'YES', 'Trump International Hotel Las Vegas', 1282, 'March', 3, '09:00:03');
  387. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (222, 'USA', 'North America', 775, 255, 'Mar-May', 'Couples', 'YES', 'Trump International Hotel Las Vegas', 1282, 'March', 3, '21:01:33');
  388. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (223, 'United Arab Emirates', 'Asia', 16, 6, 'Mar-May', 'Couples', 'YES', 'Trump International Hotel Las Vegas', 1282, 'April', 4, '05:27:19');
  389. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (224, 'USA', 'North America', 1, 1, 'Mar-May', 'Couples', 'YES', 'Trump International Hotel Las Vegas', 1282, 'April', 5, '20:03:06');
  390. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (225, 'Singapore', 'Asia', 19, 17, 'Mar-May', 'Families', 'YES', 'Trump International Hotel Las Vegas', 1282, 'May', 4, '13:58:08');
  391. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (226, 'Brazil', 'South America', 7, 8, 'Mar-May', 'Families', 'YES', 'Trump International Hotel Las Vegas', 1282, 'May', 3, '04:15:01');
  392. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (228, 'USA', 'North America', 48, 30, 'Jun-Aug', 'Business', 'YES', 'Trump International Hotel Las Vegas', 1282, 'June', 2, '20:20:15');
  393. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (229, 'Canada', 'North America', 136, 55, 'Jun-Aug', 'Families', 'YES', 'Trump International Hotel Las Vegas', 1282, 'July', 5, '15:30:19');
  394. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (230, 'USA', 'North America', 26, 1, 'Jun-Aug', 'Families', 'YES', 'Trump International Hotel Las Vegas', 1282, 'July', 3, '04:16:53');
  395. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (479, 'Canada', 'North America', 123, 63, 'Dec-Feb', 'Couples', 'YES', 'Paris Las Vegas', 2916, 'December', 3, '03:41:43');
  396. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (480, 'USA', 'North America', 24, 6, 'Dec-Feb', 'Friends', 'YES', 'Paris Las Vegas', 2916, 'December', 2, '17:43:36');
  397. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (492, 'USA', 'North America', 38, 11, 'Jun-Aug', 'Business', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'June', 2, '06:11:57');
  398. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (499, 'UK', 'Europe', 35, 25, 'Sep-Nov', 'Couples', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'October', 2, '02:24:59');
  399. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (501, 'Canada', 'North America', 50, 29, 'Sep-Nov', 'Couples', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'November', 3, '20:59:45');
  400. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (477, 'USA', 'North America', 48, 25, 'Sep-Nov', 'Couples', 'YES', 'Paris Las Vegas', 2916, 'November', 4, '10:09:54');
  401. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (478, 'USA', 'North America', 24, 5, 'Sep-Nov', 'Couples', 'YES', 'Paris Las Vegas', 2916, 'November', 3, '11:43:42');
  402. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (132, 'USA', 'North America', 25, 36, 'Jun-Aug', 'Solo', 'YES', 'Caesars Palace', 3348, 'June', 3, '15:39:16');
  403. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (490, 'USA', 'North America', 17, 18, 'Mar-May', 'Couples', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'May', 3, '03:03:29');
  404. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (491, 'USA', 'North America', 96, 161, 'Jun-Aug', 'Solo', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'June', 5, '08:04:14');
  405. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (493, 'India', 'Asia', 12, 9, 'Jun-Aug', 'Families', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'July', 4, '19:17:56');
  406. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (494, 'USA', 'North America', 9, 1, 'Jun-Aug', 'Couples', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'July', 5, '10:28:20');
  407. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (495, 'USA', 'North America', 23, 22, 'Jun-Aug', 'Families', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'August', 5, '02:11:38');
  408. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (496, 'USA', 'North America', 21, 3, 'Jun-Aug', 'Couples', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'August', 3, '04:41:19');
  409. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (497, 'USA', 'North America', 30, 19, 'Sep-Nov', 'Solo', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'September', 4, '07:53:13');
  410. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (498, 'USA', 'North America', 63, 59, 'Sep-Nov', 'Couples', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'September', 4, '05:38:58');
  411. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (500, 'UK', 'Europe', 15, 8, 'Sep-Nov', 'Couples', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'October', 2, '22:44:25');
  412. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (502, 'USA', 'North America', 154, 31, 'Sep-Nov', 'Friends', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'November', 5, '19:51:21');
  413. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (232, 'USA', 'North America', 78, 24, 'Jun-Aug', 'Couples', 'YES', 'Trump International Hotel Las Vegas', 1282, 'August', 5, '07:54:00');
  414. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (314, 'USA', 'Europe', 372, 169, 'Dec-Feb', 'Business', 'YES', 'Marriott''s Grand Chateau', 100, 'April', 3, '19:28:00');
  415. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (316, 'USA', 'Europe', 21, 20, 'Dec-Feb', 'Business', 'YES', 'Marriott''s Grand Chateau', 100, 'May', 3, '11:44:59');
  416. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (325, 'USA', 'Europe', 75, 48, 'Jun-Aug', 'Couples', 'YES', 'Marriott''s Grand Chateau', 100, 'June', 2, '10:10:53');
  417. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (403, 'Ireland', 'Europe', 76, 32, 'Sep-Nov', 'Couples', 'NO', 'Wyndham Grand Desert', 1654, 'June', 3, '21:09:43');
  418. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (330, 'USA', 'Europe', 6, 5, 'Sep-Nov', 'Friends', 'YES', 'Marriott''s Grand Chateau', 100, 'April', 2, '05:51:55');
  419. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (315, 'USA', 'Europe', 84, 36, 'Dec-Feb', 'Families', 'YES', 'Marriott''s Grand Chateau', 100, 'April', 3, '14:22:50');
  420. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (323, 'USA', 'Europe', 6, 6, 'Jun-Aug', 'Families', 'YES', 'Marriott''s Grand Chateau', 100, 'April', 2, '21:34:42');
  421. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (332, 'Mexico', 'Europe', 159, 78, 'Sep-Nov', 'Families', 'YES', 'Marriott''s Grand Chateau', 100, 'April', 4, '03:14:59');
  422. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (328, 'Israel', 'Europe', 62, 25, 'Jun-Aug', 'Families', 'YES', 'Marriott''s Grand Chateau', 100, 'May', 2, '22:32:45');
  423. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (334, 'Norway', 'Europe', 86, 46, 'Sep-Nov', 'Couples', 'YES', 'Marriott''s Grand Chateau', 100, 'May', 2, '09:41:44');
  424. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (394, 'USA', 'Europe', 54, 15, 'Mar-May', 'Business', 'NO', 'Wyndham Grand Desert', 1654, 'May', 4, '16:54:16');
  425. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (313, 'Canada', 'Europe', 160, 88, 'Dec-Feb', 'Business', 'YES', 'Marriott''s Grand Chateau', 100, 'June', 5, '16:12:49');
  426. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (317, 'UK', 'Europe', 95, 55, 'Mar-May', 'Friends', 'YES', 'Marriott''s Grand Chateau', 100, 'June', 4, '13:32:10');
  427. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (322, 'Canada', 'Europe', 46, 42, 'Mar-May', 'Business', 'YES', 'Marriott''s Grand Chateau', 100, 'June', 3, '18:34:55');
  428. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (391, 'Canada', 'Europe', 69, 38, 'Mar-May', 'Families', 'NO', 'Wyndham Grand Desert', 1654, 'June', 3, '22:47:11');
  429. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (395, 'UK', 'Europe', 35, 27, 'Jun-Aug', 'Couples', 'NO', 'Wyndham Grand Desert', 1654, 'June', 3, '20:10:01');
  430. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (401, 'USA', 'Europe', 14, 14, 'Sep-Nov', 'Friends', 'NO', 'Wyndham Grand Desert', 1654, 'June', 5, '18:56:14');
  431. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (321, 'Australia', 'Europe', 275, 339, 'Mar-May', 'Couples', 'YES', 'Marriott''s Grand Chateau', 100, 'July', 2, '14:47:18');
  432. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (331, 'Thailand', 'Europe', 18, 8, 'Sep-Nov', 'Business', 'YES', 'Marriott''s Grand Chateau', 100, 'July', 3, '19:26:19');
  433. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (336, 'Germany', 'Europe', 64, 23, 'Dec-Feb', 'Families', 'YES', 'Marriott''s Grand Chateau', 100, 'July', 2, '07:29:00');
  434. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (396, 'India', 'Europe', 23, 7, 'Jun-Aug', 'Families', 'NO', 'Wyndham Grand Desert', 1654, 'July', 3, '15:50:48');
  435. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (402, 'USA', 'Europe', 415, 265, 'Sep-Nov', 'Business', 'NO', 'Wyndham Grand Desert', 1654, 'August', 3, '03:53:52');
  436. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (318, 'Germany', 'Europe', 118, 131, 'Mar-May', 'Business', 'YES', 'Marriott''s Grand Chateau', 100, 'October', 2, '03:10:16');
  437. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (319, 'Canada', 'Europe', 6, 8, 'Mar-May', 'Couples', 'YES', 'Marriott''s Grand Chateau', 100, 'October', 2, '02:42:27');
  438. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (388, 'Canada', 'Europe', 12, 15, 'Dec-Feb', 'Couples', 'NO', 'Wyndham Grand Desert', 1654, 'November', 3, '04:05:31');
  439. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (324, 'Australia', 'Europe', 11, 5, 'Jun-Aug', 'Families', 'YES', 'Marriott''s Grand Chateau', 100, 'April', 5, '05:51:36');
  440. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (389, 'USA', 'Europe', 27, 51, 'Mar-May', 'Friends', 'NO', 'Wyndham Grand Desert', 1654, 'April', 5, '08:35:40');
  441. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (233, 'UK', 'Europe', 24, 12, 'Sep-Nov', 'Families', 'YES', 'Trump International Hotel Las Vegas', 1282, 'September', 2, '07:44:29');
  442. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (235, 'Ireland', 'Europe', 4, 3, 'Sep-Nov', 'Friends', 'YES', 'Trump International Hotel Las Vegas', 1282, 'October', 4, '04:59:21');
  443. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (7, 'UK', 'Europe', 45, 46, 'Mar-May', 'Couples', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'April', 3, '11:31:37');
  444. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (9, 'India', 'Asia', 24, 8, 'Mar-May', 'Friends', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'May', 5, '04:03:29');
  445. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (10, 'Canada', 'North America', 12, 11, 'Mar-May', 'Families', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'May', 5, '12:59:52');
  446. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (11, 'USA', 'North America', 102, 58, 'Jun-Aug', 'Families', 'YES', 'Circus Circus Hotel & Casino Las Vegas', 3773, 'June', 2, '04:07:45');
  447. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (64, 'UK', 'Europe', 33, 19, 'Jun-Aug', 'Families', 'YES', 'Monte Carlo Resort&Casino', 3003, 'August', 4, '15:35:40');
  448. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (65, 'United Arab Emirates', 'Asia', 156, 142, 'Sep-Nov', 'Friends', 'YES', 'Monte Carlo Resort&Casino', 3003, 'September', 4, '07:58:06');
  449. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (66, 'Ireland', 'Europe', 19, 16, 'Sep-Nov', 'Couples', 'YES', 'Monte Carlo Resort&Casino', 3003, 'September', 3, '03:18:16');
  450. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (67, 'USA', 'North America', 23, 11, 'Sep-Nov', 'Families', 'YES', 'Monte Carlo Resort&Casino', 3003, 'October', 2, '12:09:00');
  451. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (68, 'USA', 'North America', 13, 3, 'Sep-Nov', 'Couples', 'YES', 'Monte Carlo Resort&Casino', 3003, 'October', 2, '03:17:40');
  452. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (70, 'China', 'Asia', 1, 2, 'Sep-Nov', 'Business', 'YES', 'Monte Carlo Resort&Casino', 3003, 'November', 5, '16:05:34');
  453. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (72, 'Mexico', 'North America', 56, 36, 'Dec-Feb', 'Couples', 'YES', 'Monte Carlo Resort&Casino', 3003, 'December', 3, '07:58:38');
  454. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (73, 'Croatia', 'Europe', 29, 14, 'Dec-Feb', 'Business', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'January', 4, '08:46:41');
  455. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (74, 'Australia', 'Oceania', 11, 8, 'Dec-Feb', 'Couples', 'YES', 'Treasure Island- TI Hotel & Casino', 2884, 'January', 5, '08:19:42');
  456. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (121, 'USA', 'North America', 50, 24, 'Dec-Feb', 'Friends', 'YES', 'Caesars Palace', 3348, 'January', 2, '09:52:31');
  457. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (124, 'Canada', 'North America', 14, 12, 'Dec-Feb', 'Families', 'YES', 'Caesars Palace', 3348, 'February', 4, '09:56:57');
  458. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (125, 'USA', 'North America', 31, 10, 'Mar-May', 'Families', 'YES', 'Caesars Palace', 3348, 'March', 2, '09:02:09');
  459. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (126, 'USA', 'North America', 15, 29, 'Mar-May', 'Families', 'YES', 'Caesars Palace', 3348, 'March', 3, '11:58:02');
  460. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (127, 'Canada', 'North America', 5, 4, 'Mar-May', 'Couples', 'YES', 'Caesars Palace', 3348, 'April', 4, '13:48:34');
  461. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (128, 'USA', 'North America', 46, 21, 'Mar-May', 'Couples', 'YES', 'Caesars Palace', 3348, 'April', 3, '15:37:50');
  462. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (131, 'USA', 'North America', 17, 13, 'Jun-Aug', 'Couples', 'YES', 'Caesars Palace', 3348, 'June', 4, '17:42:31');
  463. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (133, 'USA', 'North America', 14, 4, 'Jun-Aug', 'Couples', 'YES', 'Caesars Palace', 3348, 'July', 3, '16:47:55');
  464. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (135, 'UK', 'Europe', 11, 17, 'Jun-Aug', 'Families', 'YES', 'Caesars Palace', 3348, 'August', 4, '18:28:11');
  465. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (136, 'Canada', 'North America', 54, 31, 'Jun-Aug', 'Friends', 'YES', 'Caesars Palace', 3348, 'August', 5, '07:44:19');
  466. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (137, 'USA', 'North America', 4, 4, 'Sep-Nov', 'Couples', 'YES', 'Caesars Palace', 3348, 'September', 3, '15:38:36');
  467. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (139, 'USA', 'North America', 14, 7, 'Sep-Nov', 'Business', 'YES', 'Caesars Palace', 3348, 'October', 2, '09:26:51');
  468. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (140, 'USA', 'North America', 39, 16, 'Sep-Nov', 'Friends', 'YES', 'Caesars Palace', 3348, 'October', 2, '05:57:01');
  469. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (141, 'Australia', 'Oceania', 35, 43, 'Sep-Nov', 'Couples', 'YES', 'Caesars Palace', 3348, 'November', 4, '12:02:19');
  470. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (191, 'USA', 'North America', 6, 4, 'Dec-Feb', 'Couples', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'December', 3, '04:17:27');
  471. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (192, 'USA', 'North America', 252, 113, 'Dec-Feb', 'Families', 'YES', 'The Palazzo Resort Hotel Casino', 3025, 'December', 2, '16:32:34');
  472. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (193, 'USA', 'North America', 164, 82, 'Dec-Feb', 'Couples', 'YES', 'Wynn Las Vegas', 2700, 'January', 3, '06:24:04');
  473. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (194, 'USA', 'North America', 5, 9, 'Dec-Feb', 'Families', 'YES', 'Wynn Las Vegas', 2700, 'January', 2, '21:59:43');
  474. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (195, 'Canada', 'North America', 7, 20, 'Dec-Feb', 'Couples', 'YES', 'Wynn Las Vegas', 2700, 'February', 5, '04:27:30');
  475. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (197, 'USA', 'North America', 20, 16, 'Mar-May', 'Friends', 'YES', 'Wynn Las Vegas', 2700, 'March', 3, '08:27:34');
  476. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (198, 'USA', 'North America', 21, 12, 'Mar-May', 'Business', 'YES', 'Wynn Las Vegas', 2700, 'March', 2, '11:22:54');
  477. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (199, 'USA', 'North America', 125, 48, 'Mar-May', 'Business', 'YES', 'Wynn Las Vegas', 2700, 'April', 2, '06:35:16');
  478. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (200, 'USA', 'North America', 11, 10, 'Mar-May', 'Couples', 'YES', 'Wynn Las Vegas', 2700, 'April', 5, '22:03:14');
  479. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (203, 'USA', 'North America', 73, 365, 'Jun-Aug', 'Couples', 'YES', 'Wynn Las Vegas', 2700, 'June', 5, '07:53:32');
  480. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (260, 'Norway', 'Europe', 25, 16, 'Sep-Nov', 'Friends', 'YES', 'The Cromwell', 5888, 'October', 2, '10:35:34');
  481. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (258, 'Australia', 'Oceania', 92, 27, 'Sep-Nov', 'Business', 'YES', 'The Cromwell', 5888, 'September', 4, '18:38:41');
  482. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (259, 'USA', 'North America', 131, 116, 'Sep-Nov', 'Families', 'YES', 'The Cromwell', 5888, 'October', 5, '21:59:07');
  483. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (263, 'Canada', 'North America', 26, 22, 'Dec-Feb', 'Couples', 'YES', 'The Cromwell', 5888, 'December', 2, '16:34:13');
  484. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (264, 'USA', 'North America', 13, 1, 'Dec-Feb', 'Couples', 'YES', 'The Cromwell', 5888, 'December', 3, '03:48:41');
  485. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (266, 'USA', 'North America', 46, 87, 'Dec-Feb', 'Couples', 'YES', 'Encore at wynn Las Vegas', 2034, 'January', 5, '06:42:08');
  486. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (267, 'UK', 'Europe', 127, 81, 'Dec-Feb', 'Couples', 'YES', 'Encore at wynn Las Vegas', 2034, 'February', 3, '02:50:03');
  487. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (290, 'USA', 'Europe', 50, 48, 'Dec-Feb', 'Families', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'October', 3, '11:45:39');
  488. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (296, 'Canada', 'Europe', 7, 45, 'Mar-May', 'Families', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'October', 2, '13:44:18');
  489. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (292, 'Canada', 'Europe', 7, 4, 'Dec-Feb', 'Couples', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'January', 5, '12:48:05');
  490. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (299, 'USA', 'Europe', 9, 4, 'Jun-Aug', 'Friends', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'January', 3, '23:34:13');
  491. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (300, 'USA', 'Europe', 11, 7, 'Jun-Aug', 'Solo', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'January', 3, '05:45:27');
  492. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (384, 'Mexico', 'North America', 3, 3, 'Dec-Feb', 'Families', 'NO', 'Hilton Grand Vacations at the Flamingo', 315, 'December', 3, '06:53:56');
  493. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (412, 'Mexico', 'North America', 1, 2, 'Dec-Feb', 'Couples', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'February', 4, '16:45:27');
  494. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (415, 'Israel', 'Asia', 116, 206, 'Mar-May', 'Couples', 'YES', 'The Venetian Las Vegas Hotel', 4027, 'April', 2, '22:13:39');
  495. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (465, 'USA', 'North America', 9, 4, 'Mar-May', 'Friends', 'YES', 'Paris Las Vegas', 2916, 'May', 5, '03:55:25');
  496. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (504, 'USA', 'North America', 20, 112, 'Dec-Feb', 'Families', 'YES', 'The Westin las Vegas Hotel Casino & Spa', 826, 'December', 5, '08:54:23');
  497. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (320, 'USA', 'Europe', 60, 31, 'Mar-May', 'Couples', 'YES', 'Marriott''s Grand Chateau', 100, 'February', 3, '18:27:55');
  498. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (385, 'USA', 'Europe', 17, 12, 'Dec-Feb', 'Friends', 'NO', 'Wyndham Grand Desert', 1654, 'February', 5, '15:39:43');
  499. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (390, 'USA', 'Europe', 34, 35, 'Mar-May', 'Couples', 'NO', 'Wyndham Grand Desert', 1654, 'March', 2, '19:42:29');
  500. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (329, 'Hawaii', 'Europe', 88, 58, 'Sep-Nov', 'Friends', 'YES', 'Marriott''s Grand Chateau', 100, 'January', 2, '18:25:27');
  501. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (392, 'USA', 'Europe', 16, 7, 'Mar-May', 'Couples', 'NO', 'Wyndham Grand Desert', 1654, 'April', 2, '19:25:11');
  502. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (407, 'USA', 'Europe', 289, 133, 'Dec-Feb', 'Families', 'NO', 'Wyndham Grand Desert', 1654, 'May', 2, '02:59:44');
  503. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (242, 'USA', 'North America', 2, 2, 'Dec-Feb', 'Business', 'YES', 'The Cromwell', 5888, 'January', 5, '11:34:14');
  504. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (243, 'USA', 'North America', 26, 12, 'Dec-Feb', 'Families', 'YES', 'The Cromwell', 5888, 'February', 5, '18:02:09');
  505. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (244, 'USA', 'North America', 4, 0, 'Dec-Feb', 'Couples', 'YES', 'The Cromwell', 5888, 'February', 4, '13:38:00');
  506. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (245, 'USA', 'North America', 9, 6, 'Mar-May', 'Solo', 'YES', 'The Cromwell', 5888, 'March', 3, '18:21:37');
  507. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (246, 'USA', 'North America', 17, 70, 'Mar-May', 'Friends', 'YES', 'The Cromwell', 5888, 'March', 3, '02:29:18');
  508. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (247, 'Canada', 'North America', 3, 1, 'Mar-May', 'Couples', 'YES', 'The Cromwell', 5888, 'April', 2, '06:36:37');
  509. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (248, 'Canada', 'North America', 14, 4, 'Mar-May', 'Families', 'YES', 'The Cromwell', 5888, 'April', 4, '13:34:38');
  510. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (250, 'USA', 'North America', 59, 21, 'Mar-May', 'Couples', 'YES', 'The Cromwell', 5888, 'May', 2, '10:50:35');
  511. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (327, 'Taiwan', 'Europe', 20, 7, 'Jun-Aug', 'Families', 'YES', 'Marriott''s Grand Chateau', 100, 'January', 3, '06:40:19');
  512. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (335, 'USA', 'Europe', 42, 13, 'Dec-Feb', 'Couples', 'YES', 'Marriott''s Grand Chateau', 100, 'January', 3, '07:05:07');
  513. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (393, 'Australia', 'Europe', 26, 5, 'Mar-May', 'Families', 'NO', 'Wyndham Grand Desert', 1654, 'January', 3, '22:15:15');
  514. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (406, 'USA', 'Europe', 182, 47, 'Sep-Nov', 'Families', 'NO', 'Wyndham Grand Desert', 1654, 'February', 3, '11:00:56');
  515. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (386, 'Australia', 'Europe', 21, 13, 'Dec-Feb', 'Families', 'NO', 'Wyndham Grand Desert', 1654, 'April', 5, '02:44:49');
  516. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (398, 'USA', 'Europe', 27, 16, 'Jun-Aug', 'Friends', 'NO', 'Wyndham Grand Desert', 1654, 'April', 5, '10:44:02');
  517. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (399, 'USA', 'Europe', 41, 14, 'Jun-Aug', 'Families', 'NO', 'Wyndham Grand Desert', 1654, 'April', 2, '04:28:05');
  518. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (404, 'UK', 'Europe', 24, 30, 'Sep-Nov', 'Couples', 'NO', 'Wyndham Grand Desert', 1654, 'April', 3, '02:55:45');
  519. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (405, 'Japan', 'Europe', 23, 23, 'Sep-Nov', 'Families', 'NO', 'Wyndham Grand Desert', 1654, 'April', 4, '09:04:25');
  520. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (408, 'Canada', 'Europe', 101, 46, 'Dec-Feb', 'Friends', 'NO', 'Wyndham Grand Desert', 1654, 'May', 2, '18:22:45');
  521. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (310, 'Mexico', 'Europe', 22, 25, 'Sep-Nov', 'Families', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'June', 2, '16:13:29');
  522. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (311, 'USA', 'Europe', 42, 36, 'Dec-Feb', 'Couples', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'July', 2, '12:18:22');
  523. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (312, 'Australia', 'Europe', 20, 9, 'Dec-Feb', 'Couples', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'July', 4, '07:54:02');
  524. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (309, 'USA', 'Europe', 4, 1, 'Sep-Nov', 'Families', 'YES', 'Hilton Grand Vacations on the Boulevard', 657, 'April', 4, '13:58:52');
  525. INSERT INTO cs130tripadvisor (userid, country, continent, reviews, helpvotes, stay, traveller, casino, hotelname, rooms, reviewmonth, rating, reviewtime) VALUES (1078, 'USA', 'North America', 37, 166, 'Jun-Aug', 'Couples', 'YES', 'Trump International Hotel Las Vegas', 1282, 'June', 5, '16:23:52');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement