我有一个问题:
SELECT first_name, last_name, loyalty_num
FROM logs WHERE loyalty_num != ''
and loyalty_num is not null
and store != 000
and loyalty_num not like '000%'
我在php中使用PDO并使用默认的提取模式fetch assoc。是否可以使用fetchAll()
返回数据,以便结果的每个键都是loyalty_num
并包含其他记录first_name
和last_name
?