Visual Query Designer is a graphical interface that simplifies data binding by allowing users to interactively build queries and view the results. With the Visual Query Designer's interactive interface, users who are unfamiliar with SQL can easily design, edit and preview queries.
Visual Query Designer supports the following SQL capabilities:
For more information on how to use these capabilites in Visual Query Designer, refer to Query Building With Visual Query Designer.
Note: You need to have Microsoft Internet Explorer 9 or higher installed on the system to run the Visual Query Designer.
See the graphic below to understand how a simple SQL query is generated in the Visual Query Designer.
In a Section Report
Database View contains the structure of a database including namespaces, tables, views and columns. You can drag and drop or double click the elements in the Database View to add them to the Design tab. Alternatively, you can double click the crossed arrows icon on the right hand side of each element in the Database View to add it to the Design tab.
This is the first step in query building through the Visual Query Designer. A SQL query is generated as you add the database elements to the Design tab.
The Visual Query Designer provides several tools to generate a query. The Query Tools section is divided into three major areas: Design tab, SQL tab and Toolbar buttons.
Design Tab
The Design tab is the area of the Visual Query Designer where you set up queries. It provides a visual interface for the SQL query you want to generate.
Displays the fields, tables or any other element selected from the Database view. Each field in the Selected Fields panel has its own set of editable options.
Option | Description |
---|---|
Output |
Checkbox to determine whether the field is included in the result set. The checkbox is selected by default when a field is added to the Selected Fields panel. You can clear this checkbox if you do not want the field to be displayed in the Results panel. |
Table | Displays the name of the table the selected field belongs to. |
Alias | Allows the user to provide an alternative name for the field. |
Total |
Applies grouping or aggregates on a field. Total (expression) is used to perform a calculation, retrieve the value of a control, define regulations, create calculated fields, and define a group level for a report.
|
Sort | Arranges data in a prescribed sequence i.e. in Ascending or Descending order. |
Sort Order | Allows the user to set the order of sorting in case multiple fields are to be sorted. |
Where | Allows the user to set a filtering condition for the column data. The WHERE clause can be used when you want to fetch any specific data from a table omitting other unrelated data. |
The Tables and Relationships panel displays a list of all the tables with fields in the Selected Fields panel. In case the Selected Fields panel has fields from multiple tables, a Relations button appears at the bottom of the related table's name to show the relationship between two tables.
Tables and Relationships panel provides the following options for each table:
Option | Description |
---|---|
Table | Displays the names of all the tables with fields in the Selected Fields panel. |
Alias | Allows the user to provide an alternative name for the table. |
SQL Tab
The SQL Tab displays the SQL statement for the current query. Users can edit the query directly in the SQL Tab.
When you switch to the SQL Tab, the Visual Query Designer automatically formats your query in the correct syntax with highlighted keywords.
In the SQL Tab you can:
Tool Bar Buttons
Option | Description |
---|---|
Distinct Checkbox | Distinct Checkbox is used to remove duplicates from the result set of a SELECT statement. If checked, it allows users to display only distinct values. |
Execute | Allows users to execute their query and display the result in Results panel. |
Save | Allows users to save the query to a DataSet dialog. |
Clear | Allows users to clear all the panels in the Visual Query Designer and the SQL tab along with it. |
The Query Tools section also has a dropdown on the top right corner with two options:
Displays the result of the query set in the Visual Query Designer.
This panel is populated when you click the Execute button on the Visual Query Designer toolbar after adding the required fields or tables in the Selected Fields panel.
Go to Top