kylefarris / node-querybuilder

Node QueryBuilder Adapter for Node.js (tags: nodejs, node, mysql, active record, activerecord, querybuilder, query builder)
49 stars 19 forks source link

Select {tableName}.* from {tableName} not working #64

Open t0rton opened 3 years ago

t0rton commented 3 years ago

I'm trying to Select {tableName}.* from {tableName} not working when I join 2 tables becase I just wanna return the values from first table example

db.select('p.*').from('products p').join('brand b', 'b.id=p.brand_id')