add batch remove batch split batch comment selection show hidden batches hide batch highlight batch
db<>fiddle
donate feedback about
By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
CREATE TABLE IF NOT EXISTS `wp_wpforms_entry_fields` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`entry_id` bigint(20) NOT NULL,
`form_id` bigint(20) NOT NULL,
`field_id` int(11) NOT NULL,
`value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`date` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `entry_id` (`entry_id`),
KEY `form_id` (`form_id`),
KEY `field_id` (`field_id`)
) ENGINE=InnoDB AUTO_INCREMENT=173 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

INSERT INTO `wp_wpforms_entry_fields` (`id`, `entry_id`, `form_id`, `field_id`, `value`, `date`) VALUES
(5, 2, 549, 5, 'Abbott', '2022-09-30 13:24:47'),
(6, 2, 549, 6, 'Dane Norman', '2022-09-29 00:32:16'),
(7, 2, 549, 3, 'Male', '2022-09-29 00:32:16'),
(8, 2, 549, 7, 'Marble Hill', '2022-09-29 00:32:16'),
(9, 2, 549, 10, 'Doctor', '2022-09-29 00:32:16'),
(10, 3, 549, 5, 'Abbott', '2022-09-29 00:33:02'),
(11, 3, 549, 6, 'Helen Daphne', '2022-09-29 00:33:02'),
(12, 3, 549, 3, 'Female', '2022-09-29 00:33:02'),
(13, 3, 549, 7, 'Mc Kinnons', '2022-09-29 00:33:02'),
(14, 3, 549, 10, 'Retired', '2022-09-29 00:33:02'),
(15, 4, 549, 5, 'Abbott', '2022-09-29 00:41:58'),
(16, 4, 549, 6, 'Ishoon', '2022-09-29 00:41:58'),
(17, 4, 549, 3, 'Female', '2022-09-29 00:41:58'),
(18, 4, 549, 7, 'Marble Hill', '2022-09-29 00:41:58'),
(19, 4, 549, 10, 'Cosmotologist', '2022-09-29 00:41:58'),
(20, 5, 549, 5, 'Abbott', '2022-09-29 00:43:51'),
(21, 5, 549, 6, 'Joan Veronica', '2022-09-29 00:43:51'),
(22, 5, 549, 3, 'Female', '2022-09-29 00:43:51'),
(23, 5, 549, 7, 'Marble Shill', '2022-09-29 00:43:51'),
(24, 5, 549, 10, 'Retired', '2022-09-29 00:43:51'),
(25, 6, 549, 5, 'Abott', '2022-09-29 00:49:26'),
(26, 6, 549, 6, 'Malcolm W.Garfiled', '2022-09-29 00:49:26'),
(27, 6, 549, 3, 'Male', '2022-09-29 00:49:26'),
(28, 6, 549, 7, 'Blue Waters', '2022-09-29 00:49:26'),
(29, 6, 549, 10, 'Businessman', '2022-09-29 00:49:26'),
(30, 7, 549, 5, 'Abott', '2022-09-29 00:51:02'),
(31, 7, 549, 6, 'Marc-Daniel Philip', '2022-09-29 00:51:02'),
(32, 7, 549, 3, 'Male', '2022-09-29 00:51:02'),
(33, 7, 549, 7, 'Wetherills Estate', '2022-09-29 00:51:02'),
(34, 7, 549, 10, 'Construction', '2022-09-29 00:51:02'),
(35, 8, 549, 5, 'Abbott', '2022-09-30 13:16:54'),
(36, 8, 549, 6, 'Peter Franklyn', '2022-09-30 13:16:54'),
(37, 8, 549, 3, 'Male', '2022-09-30 13:16:54'),
(38, 8, 549, 7, 'Mc Kinnons', '2022-09-30 13:16:54'),
(39, 8, 549, 10, 'Retired', '2022-09-30 13:16:54'),
Records: 167  Duplicates: 0  Warnings: 0
SELECT * FROM wp_wpforms_entry_fields
id entry_id form_id field_id value date
5 2 549 5 Abbott 2022-09-30 13:24:47
6 2 549 6 Dane Norman 2022-09-29 00:32:16
7 2 549 3 Male 2022-09-29 00:32:16
8 2 549 7 Marble Hill 2022-09-29 00:32:16
9 2 549 10 Doctor 2022-09-29 00:32:16
10 3 549 5 Abbott 2022-09-29 00:33:02
11 3 549 6 Helen Daphne 2022-09-29 00:33:02
12 3 549 3 Female 2022-09-29 00:33:02
13 3 549 7 Mc Kinnons 2022-09-29 00:33:02
14 3 549 10 Retired 2022-09-29 00:33:02
15 4 549 5 Abbott 2022-09-29 00:41:58
16 4 549 6 Ishoon 2022-09-29 00:41:58
17 4 549 3 Female 2022-09-29 00:41:58
18 4 549 7 Marble Hill 2022-09-29 00:41:58
19 4 549 10 Cosmotologist 2022-09-29 00:41:58
20 5 549 5 Abbott 2022-09-29 00:43:51
21 5 549 6 Joan Veronica 2022-09-29 00:43:51
22 5 549 3 Female 2022-09-29 00:43:51
23 5 549 7 Marble Shill 2022-09-29 00:43:51
24 5 549 10 Retired 2022-09-29 00:43:51
25 6 549 5 Abott 2022-09-29 00:49:26
26 6 549 6 Malcolm W.Garfiled 2022-09-29 00:49:26
27 6 549 3 Male 2022-09-29 00:49:26
28 6 549 7 Blue Waters 2022-09-29 00:49:26
29 6 549 10 Businessman 2022-09-29 00:49:26
30 7 549 5 Abott 2022-09-29 00:51:02
31 7 549 6 Marc-Daniel Philip 2022-09-29 00:51:02
32 7 549 3 Male 2022-09-29 00:51:02
33 7 549 7 Wetherills Estate 2022-09-29 00:51:02
34 7 549 10 Construction 2022-09-29 00:51:02
35 8 549 5 Abbott 2022-09-30 13:16:54
36 8 549 6 Peter Franklyn 2022-09-30 13:16:54
37 8 549 3 Male 2022-09-30 13:16:54
38 8 549 7 Mc Kinnons 2022-09-30 13:16:54
39 8 549 10 Retired 2022-09-30 13:16:54
40 8 549 12 Undecided 2022-10-05 04:40:24
41 8 549 15 No 2022-09-30 13:16:54
42 9 549 5 Abbott 2022-10-02 05:40:47
43 9 549 6 Petra Veronica 2022-10-02 05:40:47
44 9 549 3 Female 2022-10-02 05:40:47
45 9 549 7 Yorks 2022-10-02 05:40:47
46 9 549 10 Retired 2022-10-02 05:40:47
47 10 549 5 Abbott 2022-10-02 05:41:41
48 10 549 6 Sandra Alicia 2022-10-02 05:41:41
49 10 549 3 Female 2022-10-02 05:41:41
50 10 549 7 Mc Kinnons 2022-10-02 05:41:41
51 10 549 10 Human Resources/Training Officer 2022-10-02 05:41:41
52 11 549 5 Abbott 2022-10-02 05:46:00
53 11 549 6 Shanigua Abriel 2022-10-02 05:46:00
54 11 549 3 Female 2022-10-02 05:46:00
55 11 549 7 Old Runaway 2022-10-02 05:46:00
56 11 549 10 Student 2022-10-02 05:46:53
57 12 549 5 Abbott 2022-10-02 05:47:52
58 12 549 6 Stanford Clifford 2022-10-02 05:47:52
59 12 549 3 Male 2022-10-02 05:47:52
60 12 549 7 Yorks Village 2022-10-02 05:47:52
61 12 549 10 Driver 2022-10-02 05:47:52
62 13 549 5 Abbott 2022-10-02 05:48:25
63 13 549 6 Wendy 2022-10-02 05:48:25
64 13 549 3 Female 2022-10-02 05:48:25
65 13 549 7 Marble Hill 2022-10-02 05:48:25
66 13 549 10 Realtor 2022-10-02 05:48:25
67 14 549 5 Abbott Nee Chastanet 2022-10-02 05:49:29
68 14 549 6 Temeka Pardita 2022-10-02 05:49:29
69 14 549 3 Female 2022-10-02 05:49:29
70 14 549 7 Paradise View 2022-10-02 05:49:29
71 14 549 10 Clerk 2022-10-02 05:49:29
72 15 549 5 Abbott Nee Lowery 2022-10-02 05:50:21
73 15 549 6 Frances Elizibeth 2022-10-02 05:50:21
74 15 549 3 Female 2022-10-02 05:50:21
75 15 549 7 Friars Hill 2022-10-02 05:50:21
76 15 549 10 Business Woman 2022-10-02 05:50:21
77 16 549 5 Abbott Nee Matthews 2022-10-02 05:58:05
78 16 549 6 Rosalind olivia 2022-10-02 05:51:15
79 16 549 3 Female 2022-10-02 05:51:15
80 16 549 7 Paradise View 2022-10-02 05:51:15
81 16 549 10 Business Woman 2022-10-02 05:51:15
82 17 549 5 Abdouch 2022-10-02 05:52:26
83 17 549 6 Geozef 2022-10-02 05:52:26
84 17 549 3 Male 2022-10-02 05:52:26
85 17 549 7 Crosbies 2022-10-02 05:52:26
86 17 549 10 Salesman 2022-10-02 05:52:26
87 18 549 5 Aboud 2022-10-02 05:53:07
88 18 549 6 George 2022-10-02 05:53:07
89 18 549 3 Male 2022-10-02 05:53:07
90 18 549 7 Crosbies 2022-10-02 05:53:07
91 18 549 10 Construction 2022-10-02 05:53:07
92 19 549 5 Aboud 2022-10-02 05:53:38
93 19 549 6 Randah 2022-10-02 05:53:38
94 19 549 3 Female 2022-10-02 05:53:38
95 19 549 7 Crosbies 2022-10-02 05:53:38
96 19 549 10 Housewife 2022-10-02 05:53:38
97 20 549 5 Ackah 2022-10-02 05:54:21
98 20 549 6 Alexander Kweku 2022-10-02 05:54:21
99 20 549 3 Male 2022-10-02 05:54:21
100 20 549 7 Old Runaway 2022-10-02 05:54:21
101 20 549 10 Pharmacist 2022-10-02 05:54:21
102 21 549 5 Adams 2022-10-02 05:55:07
103 21 549 6 Deone 2022-10-02 05:55:07
104 21 549 3 Male 2022-10-02 05:55:07
105 21 549 7 Yorks Village 2022-10-02 05:55:07
106 21 549 10 Construction Worker 2022-10-02 05:55:07
107 22 549 5 Adams 2022-10-02 05:56:07
108 22 549 6 Jenifer Nadine 2022-10-02 05:56:07
109 22 549 3 Female 2022-10-02 05:56:07
110 22 549 7 Yorks Village 2022-10-02 05:56:07
111 22 549 10 Officer 2022-10-02 05:56:07
112 23 549 5 Adams 2022-10-02 05:56:51
113 23 549 6 Lois Michelle 2022-10-02 05:56:51
114 23 549 3 Female 2022-10-02 05:56:51
115 23 549 7 Yorks Village 2022-10-02 05:56:51
116 23 549 10 Clerk 2022-10-02 05:56:51
117 24 549 5 Adams 2022-10-02 05:57:22
118 24 549 6 Percy Leon 2022-10-02 05:57:22
119 24 549 3 Male 2022-10-02 05:57:22
120 24 549 7 Yorks Village 2022-10-02 05:57:22
121 24 549 10 Salesman 2022-10-02 05:57:22
122 25 549 5 O'Donoghue 2022-10-04 18:40:07
123 25 549 6 Omari 2022-10-04 18:40:07
124 25 549 3 Male 2022-10-04 18:40:07
125 25 549 7 Yorks New Ext 2022-10-04 18:40:07
126 25 549 10 Data Clerk 2022-10-04 18:40:07
127 25 549 12 Supporter 2022-10-05 04:40:07
128 25 549 15 No 2022-10-04 18:40:07
129 25 549 13 +12666643708 2022-10-04 18:41:19
130 26 549 5 Barn 2022-10-05 03:05:25
131 26 549 6 Anderson 2022-10-05 03:05:25
132 26 549 3 Male 2022-10-05 03:05:25
133 26 549 7 Donovans 2022-10-05 03:05:25
134 26 549 10 Driver 2022-10-05 03:05:25
135 26 549 12 Supporter 2022-10-05 03:05:25
136 26 549 15 No 2022-10-05 03:05:25
137 26 549 17 greeneel@hotmail.com 2022-10-05 03:05:25
138 27 549 5 Dummy 2022-10-05 03:07:49
139 27 549 6 Anderson 2022-10-05 03:07:49
140 27 549 3 Male 2022-10-05 03:07:49
141 27 549 7 Yorks Village 2022-10-05 03:07:49
142 27 549 10 Driver 2022-10-05 03:07:49
143 27 549 12 Opposition 2022-10-05 03:07:49
144 27 549 15 No 2022-10-05 03:07:49
145 28 549 5 Dummy 2022-10-05 03:08:10
146 28 549 6 Anderson 2022-10-05 03:08:10
147 28 549 3 Male 2022-10-05 03:08:10
148 28 549 7 Mc Kinnons 2022-10-05 03:08:10
149 28 549 10 Driver 2022-10-05 03:08:10
150 28 549 12 Undecided 2022-10-05 03:08:10
151 28 549 15 No 2022-10-05 03:08:10
152 29 549 5 Dummy 2022-10-05 04:24:41
153 29 549 6 Anderson 2022-10-05 04:24:41
154 29 549 3 Male 2022-10-05 04:24:41
155 29 549 7 Yorks Village 2022-10-05 04:24:41
156 29 549 10 Driver 2022-10-05 04:24:41
157 29 549 12 Supporter 2022-10-05 04:24:41
158 29 549 15 No 2022-10-05 04:24:41
159 30 549 5 Dummy 2022-10-05 04:38:59
160 30 549 6 Anderson 2022-10-05 04:38:59
161 30 549 3 Male 2022-10-05 04:38:59
162 30 549 7 Yorks Village 2022-10-05 04:38:59
163 30 549 10 Driver 2022-10-05 04:38:59
164 30 549 12 Opposition 2022-10-05 04:38:59
165 31 231 4 John Wilson Wilson 2022-10-05 18:45:08
166 31 231 1 johnarre@email.com 2022-10-05 18:45:08
167 31 231 6 Facebook 2022-10-05 18:45:08
169 23 549 12 Supporter 2022-10-11 06:13:06
170 11 549 12 Supporter 2022-10-11 06:13:37
171 13 549 12 Undecided 2022-10-11 06:15:49
172 16 549 12 Supporter 2022-10-11 06:16:12