Tagged Questions
The three-valued-logic tag has no wiki summary.
6
votes
6answers
175 views
Options for eliminating NULLable columns from a DB model (in order to avoid SQL's three-valued logic)?
Some while ago, I've been reading through the book SQL and Relational Theory by C. J. Date. The author is well-known for criticising SQL's three-valued logic (3VL).1)
The author makes some strong ...
3
votes
8answers
230 views
How should I test a field against an SQL variable which can be null?
I've got the following SQL :
CREATE TABLE tbFoo(
a varchar(50) NULL,
)
CREATE NONCLUSTERED INDEX IX_tbFoo_a ON tbFoo
(
a ASC
)
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, ...
0
votes
4answers
1k views
SQL 'Or' operator. How does it work in the following scenario?
I've been working on optimizing a query and have ran into a situation that's making me question how I've always used SQL's OR operator. (SQL Server 2000 also)
I have a query where the conditional ...