// line 1
typeof hoisted; // function
'hoisted' in window; // true
// Some code...
// line 500
function hoisted() {}
// line 1
typeof hoisted; // undefined
'hoisted' in window; // true
// Some code...
// line 500
var hoisted = function() {};
// line 1
var hoisted;
typeof hoisted; // undefined
'hoisted' in window; // true
// Some code...
// line 500
hoisted = function() {};
SELECT
b.id, b.a_id, b.user_id,
IFNULL(b.show, a.show) AS `show`,
IFNULL(b.active, a.active) AS `active`
FROM b
LEFT JOIN a ON b.a_id = a.id