sequelize-nodejs how do I fetch data from other fields of a table
问题 Hi I'm developing a chat app and just want to know how do I fetch data from other fields of a table on mysqldatabase using sequelize because I'm totally new on this. Here is how I tried to do it: io.on('connection', function(socket){ // Send all previously sent messages for( i in messages ) { socket.emit('chat message', messages[i]); } socket.on('chat message', function(msg){ console.log('message: ' + msg); // Push the message into the in-memory array. messages.push(msg); // Storage the