Pregunta

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

¿Fue útil?

Solución

try STRING()

SELECT String(5, '0')
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top