UPDATE btp_purchase_order_init_part_details pd ,btp_purchase_order_init_details od set pd.purchase_quantity=pd.purchase_quantity-1, pd.sale_amount=pd.purchase_quantity*1 where od.order_id = 36 and od.commodity_type = 'PT03' and od.id = pd.details_id and pd.sku_code ='SKU0001' and pd.part_type=90011001
时间: 2024-04-02 17:36:43 浏览: 100
这是一条 SQL 语句,它的作用是更新 btp_purchase_order_init_part_details 和 btp_purchase_order_init_details 两个表中符合条件的记录,使得这些记录中的 purchase_quantity 字段减 1,sale_amount 字段等于 purchase_quantity 乘以 1,其中符合条件的条件包括:od.order_id 等于 36,od.commodity_type 等于 'PT03',od.id 等于 pd.details_id,pd.sku_code 等于 'SKU0001',pd.part_type 等于 90011001。
相关问题
@FeignClient(value = "btp-file-service", contextId = "btp-file-service-4-model-check-task", url = "${feign.client.btp.fileService.url:}")
这段代码是使用Spring Cloud中的Feign客户端,用于调用名为"btp-file-service"的远程服务,contextId为"btp-file-service-4-model-check-task",url可以通过配置文件中的"feign.client.btp.fileService.url"进行配置。具体的使用方式可以参考Spring Cloud官方文档。
阅读全文