1

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

Anjali
  • 1,680
  • 4
  • 26
  • 48

1 Answers1

2

try STRING()

SELECT String(5, '0')
John Woo
  • 258,903
  • 69
  • 498
  • 492