我正在尝试从表中获取所有促销代码,但我不确定我们应该为绑定参数使用什么。我尝试了“*”、“”、“%%”和“%”,但结果未定义/没有结果。有人知道如何获得所有结果吗?
router.post('/getpromocodes', function(res){
mysqlx.getSession(stageConnectionmysqlx)
.then(function(session){
var promoTable = session.getSchema('exampleTable').getTable('promo')
promoTable
.select(['promo_code', 'promo_percentage', 'expiration_date'])
.where('promo_code like :promo_code')
.bind('promo_code', '*')
.execute()
})
.then(function(result){
let data = result.fetchAll()
console.log('Here is the data', data)
res.send(data)
})
.catch(function(err){
console.log('the following error occured: ' + err.message)
})
})