我已经搜索了很多,但如果可能的话,我无法弄清楚如何做到这一点......
我有这张桌子:
CREATE TABLE bilanci (
id int AUTO_INCREMENT NOT NULL,
medicoid int NOT NULL,
`1` int NOT NULL DEFAULT 0,
`2` int NOT NULL DEFAULT 0,
`3` int NOT NULL DEFAULT 0,
`4` int NOT NULL DEFAULT 0,
`5` int NOT NULL DEFAULT 0,
`6` int NOT NULL DEFAULT 0,
`7` int NOT NULL DEFAULT 0,
`8` int NOT NULL DEFAULT 0,
`9` int NOT NULL DEFAULT 0,
`10` int NOT NULL DEFAULT 0,
`11` int NOT NULL DEFAULT 0,
`12` int NOT NULL DEFAULT 0,
conguagliodic decimal(10,2),
totbilancianno int DEFAULT 0,
totpagato decimal(12,2),
totdapagare decimal(12,2),
conguaglio decimal(10,2),
rifanno int NOT NULL,
pvimun decimal(10,4) NOT NULL DEFAULT 9.4432,
PRIMARY KEY (id)
) ENGINE = InnoDB;
以数字命名的文件对应于几个月,我需要选择如下:
select medicoid, (month(curdate()) -2), totdapagare from bilanci
(month(curdate()) -2)
对应于我需要选择的字段。
这可能吗?
答案 0 :(得分:0)
我建议你规范化你的数据库结构,你可以有一个这样的表:
CREATE TABLE bilanci (
id int AUTO_INCREMENT NOT NULL,
medicoid int NOT NULL,
conguagliodic decimal(10,2),
totbilancianno int DEFAULT 0,
totpagato decimal(12,2),
totdapagare decimal(12,2),
conguaglio decimal(10,2),
pvimun decimal(10,4) NOT NULL DEFAULT 9.4432,
PRIMARY KEY (id)
) ENGINE = InnoDB;
和第二个表bilanci_month:
create table bilanci_month (
id int auto_increment,
bilanci_id int,
rifanno int NOT NULL,
month int NOT NULL,
value int)
(bilanci_id可以定义为bilanci_month的外键),然后你的选择查询将是这样的:
select
b.medicoid,
coalesce(bm.value, 0),
b.totdapagare from bilanci
from
bilanci b left join bilanci_month bm
on b.id = bm.bilanci_id and bm.month = month(curdate())-2
另外,请注意month(curdate())-2
,如果月份是1月或2月会发生什么?您必须实现一些逻辑以获得例如上一年的11月或12月(并将此逻辑添加到您的连接中)。