DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Please enter at least three characters to search
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

The software you build is only as secure as the code that powers it. Learn how malicious code creeps into your software supply chain.

Apache Cassandra combines the benefits of major NoSQL databases to support data management needs not covered by traditional RDBMS vendors.

Generative AI has transformed nearly every industry. How can you leverage GenAI to improve your productivity and efficiency?

Modernize your data layer. Learn how to design cloud-native database architectures to meet the evolving demands of AI and GenAI workloads.

Related

  • Java EE 6 Pet Catalog with GlassFish and MySQL
  • Non-blocking Database Migrations
  • The Ultimate Guide on DB-Generated IDs in JPA Entities
  • The Complete Tutorial on the Top 5 Ways to Query Your Relational Database in JavaScript - Part 2

Trending

  • How Trustworthy Is Big Data?
  • Integrating Model Context Protocol (MCP) With Microsoft Copilot Studio AI Agents
  • The Cypress Edge: Next-Level Testing Strategies for React Developers
  • How AI Agents Are Transforming Enterprise Automation Architecture
  1. DZone
  2. Data Engineering
  3. Databases
  4. Writing Reusable SQL Queries for Your Application With DbVisualizer Scripts

Writing Reusable SQL Queries for Your Application With DbVisualizer Scripts

Summary: Writing reusable code is an essential aspect of being a good engineer. In this blog, we will teach you how to write queries using SQL and DbVisualizer.

By 
Ochuko Onojakpor user avatar
Ochuko Onojakpor
DZone Core CORE ·
Sep. 25, 23 · Tutorial
Likes (1)
Comment
Save
Tweet
Share
3.5K Views

Join the DZone community and get the full member experience.

Join For Free

The most outstanding data scientists and engineers are frequently distinguished from others by their ability to build reusable code. It is essential to have this skill, especially if you oversee database operations, which have a significant impact on how smoothly your application runs. In other words, your codebase will function poorly if it contains pointless or repetitious code, but it will work well if it has useful or reusable code.

This tutorial will cover writing some popular SQL queries executed regularly in most applications, making them reusable, and saving them with the features available in DbVisualizer.

Connecting to Our Database Server

First, we'll need to use the DbVisualizer program to establish a connection to our database server. You can learn how to do that by following this guide. All of your databases ought to appear on the left side once you've established a connection. To create a new database for this tutorial, right-click on Databases and choose "create database."

the database tree

Creating a Script

At this point, we will need to create a script to store each SQL query separately so we can easily refer to them when we want to use them again. To create a script, follow the steps listed below: 

Step 1

Click on the play icon with a plus next to it.

[ Showing the add script icon ]

It will open up an SQL commander tab where you can write your queries. 

[ The SQL commander tab ]

Step 2

After writing your queries, click on the blue diskette icon to name your script and save it.

[ Showing the blue diskette icon ]

Step 3

You can view all your saved scripts in your bookmarks.

[ Showing the saved scripts in the bookmarks tab ]

Writing Reusable SQL Queries

For this tutorial, we'll create SQL queries for a few common database operations and then save them as scripts in the DbVisualizer program. The following are the queries we have:

The CREATE TABLE Query

Databases allow us to create tables and save data in them. We can achieve this using the `CREATE TABLE` command. Below is an example of creating a table: 

 
CREATE TABLE `employees` (



`serial_number` varchar(100) NOT NULL,



`company_name` varchar(100) DEFAULT NULL,



`employee_markme` varchar(100) DEFAULT NULL,



`description` varchar(100) DEFAULT NULL,



`leave` varchar(100) DEFAULT NULL,



PRIMARY KEY (`serial_number`),



UNIQUE KEY `serial_number` (`serial_number`)



);


Copy the query above into the SQL commander tab and click on the play icon to execute it. 

[ Executing the create table query script ]

It works perfectly. But how do we make this query more configurable for broader use cases? By using DbVisualizer’s variable feature, we can set variables in our SQL query as parameters and prompt for their values when the query is executed. We can achieve this by wrapping the variables we choose like so ${variable_name}$. Here is the reusable version of the CREATE TABLE query:

 
CREATE TABLE `${table_name}$` (



`${first_column}$` varchar(100) NOT NULL,



`${second_column}$` varchar(100) DEFAULT NULL,



`${third_column}$` varchar(100) DEFAULT NULL,



`${fourth_column}$` varchar(100) DEFAULT NULL,



`${last_column}$` varchar(100) DEFAULT NULL,



PRIMARY KEY (`${primary_key}$`),



UNIQUE KEY `${unique_key}$` (`${unique_key}$`)



);


Executing the query above creates the prompt in the image below.

[ Entering parameter values in the create table query ]

Click on “Continue” to execute the query using your provided values. Our CREATE TABLE query is now configurable. 

Currently, we have an empty contacts table. We can populate it by importing data from this CSV file. To import data, right-click on the contacts table we just created, then click on the import table data option from the dropdown.

[ Selecting database to import table data ]

Now select the CSV file in the file directory as shown in the image below:

[ Choosing CSV file in directory ]

Continue clicking “Next >” until you get to the “Import” button.

[ Importing the CSV file into the table ]

Finally, click on “Import”. You should receive a success message to signify that the data has successfully been imported into your tables.

[ Import success message ]

The COUNT Query

The COUNT query counts each row in a chosen field and displays the total number of rows in the table. Users can also define the query partition clause if they specify the DISTINCT option. The ORDER BY clause and windowing clause are not allowed since this clause is a component of the analytic clause. The syntax is SELECT COUNT(colname) FROM table name. In our example below, we will be counting data grouped by a common description:

 
SELECT COUNT(${field_to_count}$), ${show_field}$ FROM ${table_name}$ GROUP BY ${group_field}$;


This will return the number of employees that have the same description value.

[ Entering parameter values for count data query ]

[ Executing the count data query ]

Swapping the Value of Two Columns in a Table

Let’s assume you’ve entered information for two fields and swapped their data incorrectly.  To correct this issue, we’ll write a query to automatically switch the data in those two columns using the UPDATE command. Here is the query:

 
UPDATE employees SET description=company_name, company_name=description


[ Entering parameter values for the swap columns query ]

[ Executing swap columns query ]

Returning Unique Values

Imagine for a moment that our data entry operator accidentally added duplicate data to the database table several times. To select only distinct (unique) values from the table, we will use SELECT DISTINCT to build a list of distinct data entries to solve the issue using the DISTINCT command:

 
SELECT DISTINCT ${distinct_field}$, ${show_field}$ FROM employees


[ Entering parameter values for the distinct data query ]

[ Executing the distinct data query ]

Limiting Retrieved Data

If our database has thousands or even millions of entries and we want to limit the number of rows that are retrieved, we can use the LIMIT clause to tell MySQL a specific number of rows to return. This is what we are doing in this example:

 
SELECT \* FROM ${table_name}$ LIMIT ${top_limit}$;


[ Entering parameter values for the LIMITquery ]

[ Executing the LIMIT query ]

Problems Solved

In the examples above, we converted some of our regular SQL queries into reusable versions by making their variables configurable using DbVisualizer’s features. But why should we make our queries reusable? Here are some benefits:

  1. The variable and script feature work together to allow us to develop SQL query templates, saving you time writing repetitive code and making your SQL much easier to understand.
  2. Writing reusable SQL queries also guarantees that your software adheres to a set standard, allowing you to create high-quality queries consistently.

Conclusion

Today, we took one step forward toward the database performance highway by building more performant applications with the help of DbVisualizer. Feel free to play around with dbVisualizer and learn more from the documentation, and feel free to reach out to me on LinkedIn if you have any questions.

MySQL application sql

Published at DZone with permission of Ochuko Onojakpor. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Java EE 6 Pet Catalog with GlassFish and MySQL
  • Non-blocking Database Migrations
  • The Ultimate Guide on DB-Generated IDs in JPA Entities
  • The Complete Tutorial on the Top 5 Ways to Query Your Relational Database in JavaScript - Part 2

Partner Resources

×

Comments
Oops! Something Went Wrong

The likes didn't load as expected. Please refresh the page and try again.

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends:

Likes
There are no likes...yet! 👀
Be the first to like this post!
It looks like you're not logged in.
Sign in to see who liked this post!