Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.17 KB | None | 0 0
  1. CREATE FUNCTION  tauxRemplissage (@vol int)
  2. RETURNS varchar(10)
  3. AS
  4. BEGIN  
  5. declare @taux varchar(10)
  6. set @taux=5
  7.  
  8. RETURN @taux
  9. END
  10.  
  11. go
  12. select tauxRemplissage(100)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement