Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
When I modify it I get a message to modify an SQL procedure which I say no to,
vba317 said:How do I save the script then?
Create Procedure HelloWorld
AS
If DatePart(Hour,GetDate()) < 12
Select 'Good Morning'
Else If DatePart(Hour,GetDate()) < 5
Select 'Good Afternoon'
Else
Select 'Good Evening'
Exec HelloWorld
Select * From Information_Schema.Routines