gpt4 book ai didi

mysql结合字符串+ int值

转载 作者:可可西里 更新时间:2023-11-01 08:09:02 25 4
gpt4 key购买 nike

我在 mysql 中有这个表。

CREATE TABLE `numbering` (
`numbering_id` INT(11) NOT NULL AUTO_INCREMENT,
`document_type` VARCHAR(255) NOT NULL,
`current_no` int(15) NOT NULL DEFAULT '0',
`next_no` int(15) NOT NULL DEFAULT '1',
`pattern_name` VARCHAR(255) NULL,
`created_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`numbering_id`)
);

我添加一条记录。

插入编号 (document_type, current_no, next_no, pattern_name) 值 ('CUST_INV_NUM', 0, 1, 'INV');`

我尝试通过以下方式检索值:

select (pattern_name + '-' + next_no)
from numbering
where document_type = 'CUST_INV_NUM';`

我得到值 1 返回。我期待 INV-1 我该怎么做?

最佳答案

我想出了答案..

从编号中选择 CONCAT(pattern_name, '-' , next_no) where document_type = 'CUST_INV_NUM';

关于mysql结合字符串+ int值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51261863/

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