gpt4 book ai didi

mysql - 从数据库中获取特定订单的订单 ID 的查询是什么

转载 作者:行者123 更新时间:2023-11-29 15:27:21 24 4
gpt4 key购买 nike

从数据库中获取特定 Goal_name 的 Goal_id 的查询是什么想象一下,一列是 Goal_id,另一列是 Goal_name enter image description here .我想要以下格式( native 查询)

@Query("Select a from UserEntity a where a.userId= :userId")    
List<UserEntity> getUserById(@Param("userId") String userId);

我想在 Spring Boot 中使用它,我将从 UI 获取订单号,并且我想获取该订单号对应的订单 ID

最佳答案

与此类似的东西。详细信息可能会有所不同,具体取决于实体的具体设计以及您是否期望 1、0-1 或 N 结果以及您是否想要 List 还是 Set

@Query("SELECT a.goalId FROM UserEntity a where a.goalName = :name")
List<Long> getIdsForName(String name)

关于mysql - 从数据库中获取特定订单的订单 ID 的查询是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58988983/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com