所以假设这是我在 MySQL 中的数据库的层次结构。
Database: Example
Table: Test
Row 1
Column 1 ("one"): Whatever
Column 2 ("two"): Something
Column 3 ("three"): Test
Row 2
Column 1 ("one"): Blah
Column 2 ("two"): Testing
Column 3 ("three"): Yup
如何返回包含one
列值的数组?
数组看起来像这样:
Array ( [0] => Whatever [1] => Blah )