标签: php mysql
我怎么做到这一点?例如,如果用户的名字在名为first name的列中,并且姓在名为last name的列中,我如何确定这些名称是否在同一行?我是否使用行的ID进行检查?增量?我不确定,现在开始使用php。感谢。
答案 0 :(得分:4)
将两个值添加到where条件并结合and
where
and
select * from your_table where first_name = 'tom' and last_name = 'sawyer'
它只返回两个值在同一行的记录。