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.
For UPDATE or DELETE statements: This feature will be removed in a future version of Microsoft SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature.
CREATE TABLE Test1
(Col1 INT)
BEGIN TRANSACTION
INSERT INTO Test1 SELECT 1
WAITFOR DELAY '00:00:10'
ROLLBACK TRANSACTION
SELECT * FROM Test1