Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created July 9, 2015 01:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/d0432b25ffbbaa389316 to your computer and use it in GitHub Desktop.
Save Fhernd/d0432b25ffbbaa389316 to your computer and use it in GitHub Desktop.
Uso de return.
-- OrtizOL - xCSw - http://ortizol.blogspot.com
IF NOT EXISTS
(SELECT ProductID
FROM Production.Product
WHERE Color = 'lightblue')
BEGIN
RETURN;
END;
SELECT ProductID As 'ID Producto'
FROM Production.Product
WHERE Color = 'lightblue';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment