gsSQL icon indicating copy to clipboard operation
gsSQL copied to clipboard

Use real SQL SELECT syntax to filter your Google Sheets data using a simple custom function.

Results 7 gsSQL issues
Sort by recently updated
recently updated
newest added

So ``` =gsSQL("select * from booksales where Date > '5/3/2022' ", "booksales", BookSales!A1:H) ``` is including records with TEXT CHARACTERS in the Date column. My comparisons to mySQL don't have...

bug

1ZfedAgGG2K5kPLC2NPfe0Kb1xAg-0gvmliR3V8pRNk6DZMTUQyCbMW1W not working ![image](https://github.com/demmings/gsSQL/assets/103827902/8d6d3676-c3f8-467f-827b-1c66cbba51c6)

In order for my tests to always work, I added this as a test for dateDiff() so that it would always return '7'. There is something wrong with the ROUNDING....

bug

* Getting a warning about a regex used to extract ORDER BY * Not currently causing any problems, other than a warning. ``` Make sure the regex used here, which...

enhancement

The SUM() aggregate fields will return the correct values if used as the single source of info for the select field, but it fails when a calculation is done using...

bug

``` =gsSQL("select sum(net_income_from_taxable) as 'Net Income from Taxable', sum(gross_taxable_income) as 'Total Gross Income' from income where age > ?1 and age

bug

Implicit SELF JOIN is not supported. `select A.name as custname1, B.name as custname2 from customers as A, customers as B where A.id B.id ` This statement does not work with...

bug