I think what you're saying is every 10 minutes you need to fire off 10 SQL queries, and you want a pause between each.
First question, do you want one to complete before the next starts and add 1 second between them? Or start each 1 second apart but all may be running at the same time?
And are you running these in your main UI thread (bad idea) or a worker thread?
Based on your question I think you're running them in your main thread. Instead create a worker thread that fires once every 10 minutes. Without the worker thread your system will freeze anytime a query takes awhile.
If you want 1 second between completion of one thread and start of the next, you can put the Sleep(1000) call in the worker thread.
If you want 1 second between the start of each, you need 10 worker threads. The first will set the second to fire in 1 second, then call it's query. The second will set the third to fire in 1 second, then start it's query.