You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constSQLBuilder=require('json-sql-builder2');// create a new instance of the SQLBuilder and load the language extension for mysqlvarsql=newSQLBuilder('MySQL');// lets start some query funvartotalSalary=sql.$select({job_title: true,total_salary: {$sum: 'salary'},$from: 'people',$where: {job_title: {$in: ['Sales Manager','Account Manager']},age: {$gte: 18},country_code: 'US',},$groupBy: 'job_title',});
comma missing in total_salary line
The text was updated successfully, but these errors were encountered:
comma missing in total_salary line
The text was updated successfully, but these errors were encountered: