Giter Site home page Giter Site logo

Comments (10)

chrisjlocke avatar chrisjlocke commented on May 23, 2024

Can you share your schema (not the data) of the two tables.
My initial thought was that the view doesn't quite make sense - the view contains more columns than the group by, but that may just be me using SQL server too much...

from sqlitebrowser.

chrisjlocke avatar chrisjlocke commented on May 23, 2024

COUNT(Purchases.Product)

Isn't that just a count of the number of your purchases? (sales). So if you had ten sales (regardless of the number of products sold in those purchases) it would just be ten? I don't think this is the cause of your problem, but either way, its not going to give you the figure you're after. I'm trying to recreate this issue, but can't fathom how you're getting your values.

Also, count just gives you the number of rows. Does the field 'removed' contain how many items were purchased? So if fred made a purchase of ten items, and bob made a purchase of ten items, that would be two rows of ten in the 'removed' field? If so, count would be two, so you'd need the 'sum' keyword to get the true value of twenty.

from sqlitebrowser.

chrisjlocke avatar chrisjlocke commented on May 23, 2024

image

Ignoring my comments above, the exact filter is working for me on a view.

Edit: OK, it works on normal columns, but not calculated columns.
Its treating it as text, and the where clause is failing as a value of 2 doesn't equal a textual where of ='2' (which surprises me...)
Looking at the schema, db4s isn't correctly reporting the field type of the calculated column. I don't know if this is an issue with db4s or not.
The easiest solution is to override the filter and specifically tell it to filter on a numeric value of 2 not string value of 2.

from sqlitebrowser.

midoragh avatar midoragh commented on May 23, 2024

CREATE TABLE "Products" (
"Key" TEXT UNIQUE,
"Manufacturer" TEXT,
"ProductId" TEXT,
"ProductName" TEXT,
"Category" TEXT,
"Description" TEXT,
"Color" TEXT,
"Width" REAL,
"Depth" REAL,
"Height" REAL,
"PriceCurrency" TEXT DEFAULT 'CHF',
"PriceValue" REAL,
"PriceDate" TEXT,
"Photo" BLOB,
"Remark" TEXT
)
CREATE TABLE "Purchases" (
"Added" TEXT,
"Removed" TEXT,
"Dealer" TEXT,
"DealerLocation" TEXT,
"Product" TEXT,
"Currency" TEXT,
"Price" REAL,
"Location" TEXT,
"Remarks" TEXT,
FOREIGN KEY("Product") REFERENCES "Products"("Key")
)

The Purchases table contains the Products I bought. Sometimes one of these items get destroyed of gifted. In this case there will be a date in the removed column.
You may simplify
SELECT (COUNT(Purchases.Product)-COUNT(Purchases.Removed)) AS Count,
to
SELECT COUNT(Purchases.Product) AS Count,
but the exact filter is the same.

from sqlitebrowser.

midoragh avatar midoragh commented on May 23, 2024

=2 is working
image

but =2 doesn't work
image

from sqlitebrowser.

chrisjlocke avatar chrisjlocke commented on May 23, 2024

image

I don't know the internal logic of DB4S, but I'm guessing its seeing the calculated column and not knowing what it is .. text, integer, etc, so assuming text.

Try creating a view, forcing the type.

create view vwProducts2
as
select *, cast(key + product as INT) as derived
from products

image

This may then work.

Edit:
So for your use case, this would be

SELECT cast(COUNT(Purchases.Product) - COUNT(Purchases.Removed) as int) AS Count, Products.Manufacturer
from products
LEFT JOIN Purchases ON Products.Key = Purchases.Product
GROUP BY Products.Key

from sqlitebrowser.

midoragh avatar midoragh commented on May 23, 2024

It works, thanks for the support. This is a little bit strange because COUNT() should be already of type int.

image

Do you think that this is an sqlite3 issue? Still wondering why the log shows
SELECT NULL,* FROM "main"."ViewProductsPurchased" WHERE "Manufacturer" LIKE '%Ugears%' ESCAPE '' AND "Count" = '2' ORDER BY "Count" DESC LIMIT 49999 OFFSET 0;
and not
SELECT NULL,* FROM "main"."ViewProductsPurchased" WHERE "Manufacturer" LIKE '%Ugears%' ESCAPE '' AND "Count" = 2 ORDER BY "Count" DESC LIMIT 49999 OFFSET 0;
as with the other compare operators like >=.

from sqlitebrowser.

chrisjlocke avatar chrisjlocke commented on May 23, 2024

Do you think that this is an sqlite3 issue?

More of a Db4S issue. The filter probably (this is an assumption) looks at the field type and says, 'is this an integer? If so, I don't need to add quotes, otherwise I do', doesn't see anything, so based on the 'otherwise', adds quotes.
There are a couple of open issues around the filters, eg setting explicit values, which are kind of related.

Just found another 'workaround', rather than setting the cast type. Change the filter to just 2, and not =2. This then uses a 'like' operator which finds the record. However, this fails if you also have a count value of 22. Hmm. So not much of a workaround. Not foolproof, anyway. :(

from sqlitebrowser.

chrisjlocke avatar chrisjlocke commented on May 23, 2024

Setting this as a bug as someone more intelligent than me might be able to spot an easy fix.

from sqlitebrowser.

midoragh avatar midoragh commented on May 23, 2024

The cast works fine. Typically I'm only filtering for "=0" or ">0". But because "=0" didn't work I just used "0" as workaround ;-)
Just thought that I should raise the issue/bug here. Maybe it's really just an issue that evaluating COUNT() or the arithmetic operators doesn't forward the correct type. So COUNT() is always int and int+int is also int.

from sqlitebrowser.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.