Advertisement
Fhernd

Receta_TSQL-2.7_Ej1.sql

Jul 8th, 2015
1,107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.28 KB | None | 0 0
  1. -- OrtizOL - xCSw - http://ortizol.blogspot.com
  2.  
  3. IF NOT EXISTS
  4.     (SELECT ProductID
  5.         FROM Production.Product
  6.         WHERE Color = 'lightblue')
  7.     BEGIN
  8.         RETURN;
  9.     END;
  10.  
  11. SELECT ProductID As 'ID Producto'
  12. FROM Production.Product
  13. WHERE Color = 'lightblue';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement