mysql数据库:当存储的时间是datetime类型,如何查询当天的数据?

createTime在数据库中对应的字段是datetime,往往存储的时间不止有日期,还带有时分秒,前端传的数据只有日期,没法根据时间段进行查询,基于此有以下三种思路:

1.在日期上补全时间,根据时间段查询

当天的数据其实也有一个时间范围就是从00:00:00到23:59:59,前端传的日期,后端可以自己把时间补全,然后利用时间范围查询。
可以参考之前的文章:https://blog.csdn.net/juligang320/article/details/124188837?spm=1001.2014.3001.5502

Date date1 = DateUtil.parse(DateUtil.formatDate(new Date()) + " 00:00:00",DateUtil.PATTERN_DATETIME);
Date date2 = DateUtil.parse(DateUtil.formatDate(new Date()) + " 23:59:59",DateUtil.PATTERN_DATETIME);
List<User> orderList = userService.lambdaQuery().between(User::getCreateTime, date1, date2).list();

2.修改时间格式

createTime设计为String类型,采用标准格式:2022-09-02 16:32:32存储
根据日期查询时,可以使用模糊查询。

3.按时间段查询

按时间段查询时,要么后端自行补充时间,要么前端查询时,分2个字段查询,startTime和endTime,前端自己把查询日期的开始和结束整理好,传到后端进行查询。

后端这样设计的方式,既可以支持时间段,又可以按日期查询,根据需求,前端灵活调用。
接口的兼容性更好。

在Qt应用程序中使用MySQL数据库存储和检索DateTime类型数据,可以按照以下步骤进行: 1. **连接到MySQL数据库**: 首先,你需要安装`QMYSQL`库或者`Qt MySQLDriver`插件,然后使用`QSqlDatabase`类建立与MySQL服务器的连接。例如: ```cpp QSqlDatabase db = QSqlDatabase::addDatabase("QMYSQL"); db.setHostName("localhost"); db.setDatabaseName("your_database_name"); db.setUserName("your_username"); db.setPassword("your_password"); if (!db.open()) { qDebug() << "Error opening database: " << db.lastError().text(); } ``` 2. **创建表并定义DateTime字段**: 创建一个包含DateTime类型的表,比如`Events`,其中有一个名为`eventDateTime`的字段: ```sql CREATE TABLE Events ( id INT PRIMARY KEY, name VARCHAR(255), eventDateTime DATETIME ); ``` 3. **插入DateTime数据**: 使用`QSqlQuery`来插入DateTime值: ```cpp QSqlRecord record; record.insert("eventDateTime", QDateTime::currentDateTime()); QSqlInsertStatement insertStmt(db); insertStmt.prepare("INSERT INTO Events (name, eventDateTime) VALUES (?, ?)"); insertStmt.bindValue(0, "Event Name"); insertStmt.setValue(1, record.value("eventDateTime")); if (!insertStmt.exec()) { qDebug() << "Error inserting data: " << insertStmt.lastError().text(); } ``` 4. **检索DateTime数据**: 可以通过SQL查询数据库中获取DateTime字段,然后使用`QSqlQuery`的`value()`函数读取出来: ```cpp QSqlQuery query(db); query.prepare("SELECT * FROM Events WHERE eventDateTime >= :currentTime"); query.bindValue(":currentTime", QDateTime::currentDateTime()); if (!query.exec()) { qDebug() << "Error executing query: " << query.lastError().text(); } while (query.next()) { QString eventName = query.value("name").toString(); QDateTime eventDateTime = query.value("eventDateTime").toDateTime(); // 处理日期时间数据... } ``` 5. **处理时间日期操作**: 使用Qt的`QDateTime`类来处理日期时间格式转换、比较等操作。 记得关闭数据库连接时释放资源: ```cpp db.close(); ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

行云的逆袭

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值