Login
Remember
Register
Ask a Question
How to run a sql statement more then one time?
0
votes
asked
Jan 26, 2021
in
Sql
by
SakshiSharma
How to run a sql statement more then one time?
#run-sql
sql-more-than-one
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 26, 2021
by
SakshiSharma
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
...