我有一个名为 tblSource 的表,其中包含一个“出生月份”字段和一个“出生日期”字段。这些被格式化为数字 - 00,例如 March 将是 03。这些在该表中看起来很好。
现在我要做的是将这些值连接到第二个表 tblTarget 中称为 DOB 的字段中。它的格式是 MMDD,表示为 0000,所以 3 月 3 日应该显示为 0303。这就是我遇到问题的地方 - 3 月 3 日的 DOB 实际上显示为 0033。
这是我正在使用的查询中的 SQL:
INSERT INTO tblTarget ( [NABP-ePID], DOB )
SELECT tblSource .[NABP e-profile ID], tblSource .[Month of Birth] & tblSource .[Day of Birth] AS DOB
FROM tblSource
WHERE tblSource .[Certification Type]='Pharmacist' Or tblSource .[Certification Type]='Pharmacy Technician';
目标表(0000)的格式有问题吗?
谢谢