Hi@akhtar,
You can do this task with the groovy script. You need to go to your script Window and enter the below code.
item = Jenkins.instance.getItemByFullName("your-job-name-here")
item.builds.each() { build ->
build.delete()
}
item.updateNextBuildNumber(1)