var response = [{
id: 1,
user_id: 2,
result: 'test',
date_time: '123'
}],
trHTML = '';
$.each(response, function (i, x) {
trHTML += '<tr>'
for (res in x) {
trHTML += '<td>' + x[res] + '</td>';
}
trHTML += '</tr>';
});
$('table').append(trHTML);