In Sql Server for replication i use the following query

select replicate('0',5)

it gives result as

00000

what is the equivalent for this in MS Access

有帮助吗?

解决方案

try STRING()

SELECT String(5, '0')
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top