Answer the question
In order to leave comments, you need to log in
How to implement a user-friendly web-interface for performing various queries to the database?
Good afternoon! Problem: how can you organize a simple and understandable interface for interacting with an existing database (groups, users in these groups, purchases by users, etc.) to obtain any data?
Problems: users are ordinary users who have no idea about select queries or any tools for working with the database, the form of the report is not defined.
Purpose: to provide a tool so that users can get the data they need. For example, the number of purchases by a user or group per week, month, some time-based metrics, etc. etc. In fact, the ability to perform select queries with ordinary filters, groupings, aggregate functions.
Answer the question
In order to leave comments, you need to log in
may be interested in microsoft power bi
https://powerbi.microsoft.com/ru-ru/
https://netpeak.net/ru/blog/kak-rabotat-s-microsof...
You need an application server that will accept requests from users outside of the API and return them as JSON/XML data suitable for further processing.
For example, https://clck.ru/E3nCQ (link to download the archive). The library is written in PHP.
Query: example.com/mysql/records/posts/1
Will return you a record from the posts table that has id1 in Json format:
{
"id": 1
"title": "Сэмпл пейдж",
"content": "Текст сообщения или что-то ещё...",
"created": "2018-05-27T20:12:56Z"
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question