Simple question really.. If I have this:
$sql = 'SELECT id, name, address, city, phone FROM users';
$STH = $conn->query($sql);
$row = $STH->fetchAll();
if (count($row) > 0) {
$id = $row[0]['id'];
}
Will fetchAll ignore what I specifically chose to select and instead select EVERYTHING from the row, including large text fields etc.?
If so, what could be a workaround? I also need the row count