Home > Back-end >  Delphi do classified statistics of the grid
Delphi do classified statistics of the grid

Time:10-30

How to implement such statements, in Delphi Dbgrideh or Dbgrid, form is the form below, I don't know here add form
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
snacks class 5 500
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Pumpkin pie 2 200
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Twist 3 300
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
beverage category 5 600
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Wang ji 2 200
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Sprite 3 300
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Wahaha 1 100
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

CodePudding user response:

What are the fields in your database?
Direct SQL statements can not achieve the above content?

CodePudding user response:

The general grid is can't do, only your own organization, with the db is more convenient, or with dev series

CodePudding user response:

Add computed field, writing stored procedures to handle,

CodePudding user response:

How do add fields, to write a stored procedure? Value I can read through SQL, just don't know how to write the grid, the above three fields for name number, amount, pumpkin pie and twist as part of the snacks, that is to say, plus a black for small projects without black under the total

CodePudding user response:

FastReport can print it out, so DevExpressGrid can such classification statistics

CodePudding user response:

I generally, is directly in the SQL processing is completed.

CodePudding user response:

FastReport can print it out, so DevExpressGrid can such classification statistics, haven't tried have specific demo? , I'll try

CodePudding user response:


Select the item type as the project name, the sum (isnull (number, 0)), sum (isnull (amount, 0)) the amount of the item type
Into a temporary table 1
From table
Group by project type

Number, project name, select a. a. a. amount from (
Select * from table
Union all
Select * from the temporary table 1
) order by a. a. project types, a. project name

Probably mean it,,,

CodePudding user response:

Cxgrid directly can be achieved by grouping, very simple, you can try

CodePudding user response:

Use third party controls cxgrid actually can do it,

CodePudding user response:

I'm in statistical methods such as o, and output to EXCEL
  • Related