Home > Database > Mysql Tutorial > How to Index PDO SQL Results Using a Column's Value as the Key?

How to Index PDO SQL Results Using a Column's Value as the Key?

Linda Hamilton
Release: 2024-12-18 01:17:11
Original
412 people have browsed it

How to Index PDO SQL Results Using a Column's Value as the Key?

How to Indext SQL Results Using Column Values with PDO

When working with SQL tables that have an id column, it's often desirable to use the id as the index for the resulting arrays when fetching data using PDO.

Consider the following example:

CREATE TABLE brands (
  id INT AUTO_INCREMENT,
  name VARCHAR(255),
  url VARCHAR(255)
);
Copy after login

If we were to fetch all rows from this table using PDO and store the results in an array, we would get something like this:

$data = $pdo->query('SELECT * FROM brands')->fetchAll();

print_r($data);
Copy after login

Output:

Array
(
    [0] => Array
        (
            [id] => 1
            [name] => Solidfloor
            [url] => solidfloor
        )
    [1] => Array
        (
            [id] => 2
            [name] => Quickstep
            [url] => quickstep
        )
)
Copy after login

As you can see, the arrays are indexed by incrementing numbers.

However, if you want to use the id column as the index, you can use the PDO::FETCH_UNIQUE constant:

$data = $pdo->query('SELECT * FROM brands')->fetchAll(PDO::FETCH_UNIQUE);

print_r($data);
Copy after login

Output:

Array
(
    [1] => Array
        (
            [name] => Solidfloor
            [url] => solidfloor
        )
    [2] => Array
        (
            [name] => Quickstep
            [url] => quickstep
        )
)
Copy after login

Now the arrays are indexed by the id column. This can be very useful when you need to access the data by id later on.

The above is the detailed content of How to Index PDO SQL Results Using a Column's Value as the Key?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template