HTSQL is a comprehensive navigational query language for relational databases.
1
vote
1answer
14 views
How to sum distinctly the values of a single column using htsql?
I have multiple records in my table's column, most of them are duplicate entries. I want to sum them up so that what ever the number is duplicate should be summed up just once, like:
Numbers
10
10
10
...
1
vote
1answer
16 views
How to Merge the Headers of multiple columns in HTSQL
I am making a Table in HTSQL, which results like:
Name Total_Calls Successful_Calls Failed_Calls
John 9 5 4
Where as I want to merge the headers like:
...
0
votes
0answers
18 views
Moving Averages Using HTSQL
I have the following sql and I am trying to determine whether it can be expressed using HTSQL:
select fulldate, (select avg(work_days_open) from sfcase where closed_date <= dd.fulldate order by ...
0
votes
0answers
17 views
HTSQL Select widget not rendering results
When I attempt to render a select widget using HTRAF, I get an "Uncaught TypeError: Cannot read property 'length' of undefined" on line 776 of jquery.htraf.js. The data-htsql attribute is filled with ...
2
votes
1answer
126 views
htsql django and manytomany relations
In HTSQL, can you query for a manytomany relation?
In my Django project (app name is config) I have a model Chapter with a ManyToMany relation with FileName.
When I view the actual sqlite3 database, ...
2
votes
1answer
169 views
Django HTSQL Web Interface for writing queries is not responding
I am trying to use HTSQL for one of my Django projects. For that I followed the procedure given HERE for furnishing HTSQL/Django requirements. Then I cloned the HTSQL repository for trying the ...
2
votes
1answer
139 views
Django HTSQL TransactionManagementError with sqlite as well as PostgreSQL backend
I am trying to use HTSQL for one of my Django projects. For that I followed the procedure given HERE for furnishing HTSQL/Django requirements. Then I cloned the HTSQL repository for trying the ...
1
vote
1answer
93 views
Customizing csv output in htsql
I would like to know if somebody knows a way to customize the csv output in htsql, and especially the delimiter and the encoding ?
I would like to avoid iterating over each result and find a way ...