node mssql 模块的ConnectionPool的一个用法求教

往数据库中添加用户名,如该用户名存在,则返回'该用户名已经存在',不存在,则插入数据

 new sql.ConnectionPool(config).connect().then(pool => {
    return pool.query`select COUNT(1) as n from TB_ADMINS  where  userName =${userName }..`;
  }).then(result => {
    let n = result.recordset[0].n;
    if (n) {
      res.send('用户名已经存在');
    }
    else {
//用户名不存在
这里插入数据该怎么写.....
    }
  }).catch(err => {
    
  })
阅读 6.5k
1 个回答
推荐问题
宣传栏