Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

245
Vistas
how to remove string inside array

I have an array

//[Paid, balance]
let tableData = [txtNewAmount.value,(select balance from table1 order by id DESC) + txtNewAmount.value] 

   var stmt = db.prepare(`INSERT INTO ${SaveToDb.tableName} (Paid, Balance) VALUES (?, ?))
 stmt.run(sqlValue)

The query is inserting data into database, but the problem is , it is saving "Balance" column saving full select query as string instead of total value "(select balance from table1 order by id DESC)

I want save it as input value(10) + paid(10) = 20

can anybody help me

Let me know if you know if any other way to save this logic

about 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

Use INSERT INTO tablename SELECT ...

let stmt = db.prepare(`
    INSERT INTO ${SaveToDb.tableName} (Paid, Balance)
    SELECT ?, balance + ?
    FROM table1
    ORDER BY id DESC`);
stmt.run([txtNewAmount.value, txtNewAmount.value]);
about 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda