Can I get the result of an exists query in Typescript using MySQL?
I'm trying to get the result of an exists query using typescript but I can't get the '1' or '0' of the object that the query is returning. code.ts const rslt1 = query(`SELECT EXISTS(SELECT * FROM patients WHERE cc=?)`, [params.ccInput]);…