0 votes
in Sql by
How to run a sql statement more then one time?

1 Answer

0 votes
by
Below is the command to run the SQL Query more than once

>Select Getdate()

>GO 10

Above query will run getdate() 10 times as we have input command GO -10 times
...