gpt4 book ai didi

Mysql "IF"查询中

转载 作者:行者123 更新时间:2023-11-29 04:26:21 25 4
gpt4 key购买 nike

我有几张 table

table201202
table201203
table201204
table201205
...
tableversion

tableversion 我有列:Version_ID Admin_ID MONTH YEAR

我需要这样的东西

Select *
FROM tableversion
LEFT JOIN table(tableversion.month tableversion.year) on
table(tableversion.month tableversion.year).Version_ID=tableversion.version_id

但是在 tableversion 中我有几个月没有前导 0 所以我必须检查是否有 5 然后将它更改为 05,如果变量是 12 则什么都没有。我该怎么做?

好的,现在我有这样的东西了

SELECT *, CONCAT('table',IF(tableversion.month < 10, CONCAT('0', tableversion.month ), tableversion.month ),year) as year
FROM tableversion
LEFT JOIN year ON tableversion.version_id=year.version_id WHERE ADMIN_ID=11

#1146 - Table 'database.year' doesn't exist

但是没有效果

最佳答案

如图所示 here , 使用 LPAD:

SELECT LPAD(month,2,'0') ...

关于Mysql "IF"查询中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10476995/

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