stmtfetchPDOFETCHNUM
The constant PDO::FETCH_NUM is an integral part of PHP's PDO (PHP Data Objects) extension, specifically used when fetching data from a database. When you execute a database query using PDO and then retrieve the results, you can specify how that data should be formatted. PDO::FETCH_NUM is one such format specifier.
When PDO::FETCH_NUM is used with fetch methods like `fetch()` or `fetchAll()`, it instructs PDO to return each
This fetch style is particularly useful when the order of columns in your query is predictable and