Finding Exactly One Non-Zero Column

Finding Exactly One Non-Zero Column

Question:
[Joe Celko’s One In Ten Puzzle]

Alan Flancman ran into a problem with some legacy system data that had been moved over to a SQL database. The table looked like this:

    CREATE TABLE MyTable          (keycol INTEGER NOT NULL,        f1 INTEGER NOT NULL,         f2 INTEGER NOT NULL,         …        f10 INTEGER NOT NULL,         );
The columns f1 through f10 were an attempt to flatten out an array into a table. What he wanted was an elegant way to test against the f1 through f10 columns to find the rows that had exactly one non-zero in their f-columns.

How many different approaches can you find?

Answer:
Solution One:

You could use the Sign() function in Sybase and other SQL products. This function returns -1, 0, or +1 if the argument is negative, zero, or positive respectively. Assuming that your numbers are zero or greater, you simply write:

    SELECT *         FROM MyTable        WHERE Sign(f1) + Sign(f2) + … + Sign(f10) = 1;
to find a single non-zero value. If you can have negative values, then make the functions Sign(ABS(fn)).

The Sign() function can be written with the CASE expression in SQL-92 as:

    CASE WHEN x > 0 THEN 1        WHEN x = 0 THEN 0        WHEN x < 0 THEN -1        OTHERWISE NULL END

Solution Two:

Since the fields are really an attempt to fake an array, you should normalize this table into 1NF, like so:

    CREATE TABLE Foobar          (keycol INTEGER NOT NULL,        i INTEGER NOT NULL CHECK (i BETWEEN 1 AND 10),        f INTEGER NOT NULL,         PRIMARY KEY (keycol, i));
The extra column i is really the subscript for the array. You now view the problem as finding an entity which has exactly nine zero valued fs, instead of as finding an entity which has exactly one non-zero valued f. That is suddenly easy:
    SELECT keycol        FROM Foobar        WHERE f = 0        GROUP BY keycol          HAVING COUNT(*) = 9;
You can create a VIEW that has the structure of Foobar, but things are going to run pretty slow unless you have a good optimizer:
    CREATE VIEW Foobar (keycol, f)          AS SELECT keycol, f1 FROM MyTable            UNION        SELECT keycol, f2 FROM MyTable            UNION        …            UNION        SELECT keycol, f10 FROM MyTable;

Solution Three:

This depends on a feature of SQL-92 that is not generally available yet.

    SELECT *         FROM MyTable        WHERE (f1, f2, … , f10) IN            ((f1, 0, 0, 0, 0, 0, 0, 0, 0, 0),            (0, f2, 0, 0, 0, 0, 0, 0, 0, 0),                ….            (0, 0, 0, 0, 0, 0, 0, 0, 0, f10));
In SQL-92, you can use row constructors in comparison predicates. The IN predicate expands into a sequence of OR-ed equality predicates. The row-wise version of equality is then done on a position by position basis, where all corresponding values must be equal.

Puzzle provided courtesy of:
Joe Celko
[email protected]

Share the Post:
XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes

ransomware cyber attack

Why Is Ransomware Such a Major Threat?

One of the most significant cyber threats faced by modern organizations is a ransomware attack. Ransomware attacks have grown in both sophistication and frequency over the past few years, forcing

data dictionary

Tools You Need to Make a Data Dictionary

Data dictionaries are crucial for organizations of all sizes that deal with large amounts of data. they are centralized repositories of all the data in organizations, including metadata such as