Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How To Do This Query
Message
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Titre:
How To Do This Query
Divers
Thread ID:
01172321
Message ID:
01172321
Vues:
53
I want to create a proc that pulls either a single record based in the RecId or all
records if no Id was passed in.

What am I doing wrong here?
CREATE PROCEDURE syGetUser
	@RecId integer = NULL

AS

	SELECT RecId,
	       GroupId, 
	       FullName
	       UserName, 
	       Password
	  FROM appUsers
	  WHERE (RecId = @RecId) OR ISNULL(@RecId)
Everything makes sense in someone's mind
public class SystemCrasher :ICrashable
In addition, an integer field is not for irrational people
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform