logo
small logo
  • Produkty
  • Zamów
  • Wsparcie techniczne
  • Articles
  • Customer panel Wsparcie techniczne
    • en
    • pt
    • es
    • de
    • pl
    • JP
    • ZH
  • Glówna strona
  • /
  • Articles
  • /
  • SQL
  • .NET
  • Mono
  • Linux
  • Core
  • Libgdiplus
  • Unicode
  • VCL
  • FastReport
  • FastReport 6
  • Delphi
  • Invoice
  • Lazarus
  • Academic
  • CSV
  • Customization
  • Business Graphics
  • FMX
  • Export
  • RTF
  • Install
  • Designer
  • Visual Studio
  • C#
  • Report
  • NuGet
  • MacOS
  • ZUGFeRD
  • SQL
  • Window function
  • ASP.NET
  • Angular
  • Online Designer
  • React
  • WebReport
  • Vue
  • Vector graphic
  • Data Source
  • JSON
  • Knockout
  • PDF
  • MVC
  • Script
  • Plugin
  • PHP
  • Excel
  • NoSQL
  • RavenDB
  • SQLCe
  • VistaDB
  • OracleDB
  • IBM DB2
  • Firebird
  • MongoDB
  • Filtering
  • CrossTab
  • FastCube
  • OLAP
  • Desktop
  • Barcode
  • QR Code
  • Open Source
  • Converter
  • Cross-platform
  • Anywhere
  • Preview
  • .NET5
  • Printing
  • Stored procedures
  • Stock quotes
  • GET request
  • HTTPS
  • PageFooter
  • Toolbar
  • XLSX
  • TXT
  • PowerPoint
  • Word
  • ARM
  • WinForms
  • Business card
  • DBA
  • Sales receipt
  • WPF
  • HTML
  • Email
  • ODS
  • ODT
  • Map
  • Visual Basic
  • Event
  • OpenOffice
  • Interactive Forms
  • ZPL
  • FmxLinux
  • RAD Studio
  • GTK3
  • Recompile
  • Ubuntu
  • DropBox
  • CEF4Delphi
  • WebView2
  • OAuth 2.0
  • TEdgeBrowser
  • TWebBrowser
  • Blazor
  • SPA
  • Data filtering
  • Matrix
  • CSS
  • HTMLView
  • Crystal Reports
  • Web API
  • Windows 11
  • Upload
  • M. Alaev
  • S. Antonenko
  • G. Bagaevski
  • A. Begunov
  • M. Drazdou
  • A. Fediashov
  • D. Fedyashov
  • A. Hayruddinov
  • P. Ishenin
  • M. Karpinskiy
  • O. Kojnikov
  • K. Kornienko
  • A. Krakovcev
  • A. Kukuyuk
  • A. Mandrykin
  • M. Philippenko
  • S. Plastun
  • O. Pryalkov
  • E. Sinitskaya
  • V. Sopnev
  • A. Syrykh
  • A. Tantzura
  • A. Tsyganenko
  • E. Voytenko
  • V. Yarovoy
  • D. Zubov
Jak wybrać najwyższe wartości w macierzy?
22 kwietnia 2021
Dmitriy Fedyashov
.NETFastReportSQLData filteringMatrix

Artykuł jest aktualny do wersji 2022.1. FastReport .NET posiada świetne narzędzie do wyświetlania danych w postaci zintegrowanej tabeli lub macierzy. Wielu z nas chciałoby poprawić funkcjonalność macierzy, np. o tak przydatną opcję jak wybór N najwyższych wartości. Wydaje się to tak proste, ...

Jak używać procedur składowanych z wieloma zestawami danych jako wynikiem?
8 maja 2020
Dmitriy Fedyashov
.NETFastReportSQLStored procedures

Podczas tworzenia raportów często mamy do czynienia z bazami danych, którym daleko do ideału . Różnorodne „funkcjonalności” czasami nas blokują. Na przykład, jak zbudować raport oparty na wielu zbiorach danych, którego wynikiem będą procedury składowane MS SQL...

Jak połączyć się z bazą danych Sybase SQL Anywhere
29 lutego 2020
Dmitriy Fedyashov
.NETFastReportSQLAnywhere

Baza danych Sybase SQL Anywhere ma szereg przydatnych funkcji, które sprawiają, że bardzo się wyróżnia na tle konkurencji. Po pierwsze, umożliwia obsługę bardzo dużej ilości danych. Po drugie - jest wysoce produktywna i szybka nawet nie zważając na dużą ilość danych. Po trzecie nie wym...

How to use SQL queries when creating an internal report data source in FastReport.Net report designer
2 września 2019
Dmitriy Fedyashov
.NETFastReportDesignerSQL

When creating a SQL database connection, you can specify a query to select filtered or combined data. The standard tools of the data source creation wizard also allow you to include parameters in the SQL query. In this case, the designation of the parameter will depend on the type of DBMS to which t...

Recursion in MS SQL
10 stycznia 2019
Dmitriy Fedyashov
SQL

Sometimes, a stored procedure or function is required to use the results of a sample several times. In such cases, we often use temporary tables. However, it is worth considering some advantages and disadvantages of temporary tables. Advantages: Temporary tables are full tables. Therefore, you c...

Window functions are what every T-SQL programmer should know. Part 2.
9 grudnia 2018
Dmitriy Fedyashov
SQLWindow function

In the second part of the article we will talk about the functions themselves, which are used to form values. The window function calculates the value from a set of data associated with the current row, that is, data from the same group, if Partition by is used. Conventional aggregate functions for ...

Window functions are what every T-SQL programmer should know. Part 1.
6 grudnia 2018
Dmitriy Fedyashov
SQLWindow function

Long time ago an interesting functionality appeared in Microsoft SQL Server 2005- window functions. These functions allow you to perform calculations in a given range of lines within a Select clause. For those who have not encountered these functions, the question arises - “What does window me...

How to use stored procedures in FastReport.Net
14 sierpnia 2018
Dmitriy Fedyashov
.NETFastReportSQL

In this article we will discuss the use of stored procedures to retrieve data for a report. Using the MS SQL example, I'll show you how to create and use functions in a report. As you know, Transact SQL allows us to create stored procedures and functions. Stored procedures are used to automate any ...

How to use dynamic queries in FastReport.Net
14 sierpnia 2018
Dmitriy Fedyashov
.NETFastReportSQL

Most users of FastReport.Net build reports receiving data from SQL DBMS, and would like to take advantage of Sql in their reports. Nothing prevents you from using dynamic queries, stored procedures and functions. In this article, we will have a look at how to use dynamic queries when creating a repo...

How to use SQL functions in FastReport.Net
14 sierpnia 2018
Dmitriy Fedyashov
.NETFastReportSQL

To obtain data in MS SQL, you can use sql queries, stored procedures, and stored functions. We have already discussed how to use dynamic queries and stored procedures as a report data source. In this article, we will create a table and scalar function and use them in the report. I recall that table...

logo
  • 800-985-8986 (English, US)
  • +4930568373928 (German)
  • +55 19 98147-8148 (Portuguese)
  • info@fast-report.com
  • 901 N Pitt Str #325 Alexandria VA 22314
  • Zamów
  • Pobierz
  • Dokumentacja
  • Opinie użytkowników
  • Jak odinstalować nasze produkty
  • Ticket system
  • FAQ
  • Tutorial Video
  • Forum
  • Articles
  • Our News
  • Prasa o nas
  • Partnerzy
  • Extended licensing
  • Kontakty

© 1998-2022 by Fast Reports Inc.

  • Poufność