我想按日期顺序从mysql数据库中获取数据,只返回数据库中的1条记录, 如果有人在我希望它带来第一人称细节而不是其他第二个
之后的某一分钟注册我应该使用这两种方法吗?
mysqli_query($conn,"select * from provided_user where status = '1' AND plan = '{$_SESSION['plan']}' ORDER By date_of_ph ASC LIMIT 1");
或
mysqli_query($conn,"select * from provided_user where status = '1' AND plan = '{$_SESSION['plan']}' ORDER By date_of_ph DESC LIMIT 1");
很少解释会有所帮助
答案 0 :(得分:0)
mysqli_query($conn,"select * from provided_user where status = '1' AND plan = '{$_SESSION['plan']}' ORDER By date_of_ph ASC LIMIT 1");
这种方法适用于您当前的scinario,因为它会以升序的形式获取您作为参数提供的日期的所有记录,因此首先记录将首先返回&后来又添加了记录。通过将其限制为1,您确保只有当天的第一条记录才能通过查询返回。 祝你好运