1
vote
How do you preform an IF…THEN in a SQL SELECT
Microsoft SQL Server (T-SQL)
In a select use:
select case when Obsolete = 'N' or InStock = 'Y' then 'YES' else 'NO' end
In a where clause, use:
…
0
votes
Handling empty values with ADO.NET and AddWithValue()
I like using the AddWithValue method.
I always specify default SQL parameters for the "optional" parameters. That way, if it is empty, ADO.NET will not include the parameter, and the store …
