我正在创建一个简单的“出勤”数据库,学生每天只能“登记”一次。每个签入都包含user_id,名称,时间和日期。使用Knex,我怎样才能每位学生每天只签一次。
我尝试了this thread的'whereNotExists'的几种变体,但似乎没有任何效果。
目前这是我的插入声明:
db('checkins').insert(db
.select(attrs.user_id, attrs.user_name, attrs.date, attrs.created_at)
.whereNotExists(db('checkins').where('user_name', attrs.user_name).andWhere('date', attrs.date).then(() => {
console.log('successful insert')
}))
然后我收到此错误('alice_id'是我在'attrs.user_id'中使用的测试值):
Unhandled rejection error: column "alice_id" does not exist
答案 0 :(得分:3)
你应该在插入之前验证,即
db('checkins')
.where({
user_id: attrs.user_id,
date: attrs.date
})
.first() // getting the first value
.then((found) => {
if (found){
res.json('already present');
}else{
// now insert data
db('checkins')
.insert({
// your data
});
}
});