0
votes
What is the best way to convert an int or null to boolean value in an SQL query?
Duh? Is this a trick question? foo IS NOT NULL is a boolean.
…
0
votes
Using a tristate parameter in a stored procedure
There's more than one way. Here's one:
SELECT *
FROM dbo.SomeTable T
WHERE T.SomeColumn = COALESCE(@Param, T.SomeColumn)
but this will not include rows for whi …
0
votes
How do I get an original row in a SQL join from disappearing?
You should be counting the number of users for whom User.CanAccessSystem is true. Think of something like
count(case when User.CanAccessSystem then true end)
The …
3
votes
JavaScript: Is IP In One Of These Subnets?
The best approach is IMO making use of bitwise operators. For example, 123.123.48.0/22 represents (123<<24)+(123<<16)+(48<<8)+0 (=2071670784; this might …
