sql server - What's the difference between PRINT and PRINT() in SQL? -
at first thought brackets in sql not matter, until today learned exec , exec() totally different things: 1 calls stored procedure, other executes string command.
what's difference between print , print(), if any?
there no difference between print , print() , both yield same results unlike exec
print 1 , print (1) both same.
and cannot add together parameters in here exec!!
sql-server
No comments:
Post a Comment