Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

236
Views
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 answers
Answer question

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!