Many database administrators are comfortable working within the command line. To them, it’s as efficient as a work environment can be. To others, however, the command line is too cumbersome to be efficient. Fortunately, for those users, there are plenty of GUIs available to make the task easier. One such GUI is MySQL Workbench. This particular tool is one of the finest locally installed MySQL client tools you’ll find. It’s cross-platform, open source, and incredibly easy to use.

I’m going to show you just how easy it is to make use of MySQL Workbench. To do so, I’ll walk you through the process of creating a database, adding a table to that database, and then adding data to the table.

SEE: Server deployment/migration checklist (Tech Pro Research)

What you need

I’ll use MySQL Working 6.3, which has drastically evolved from older versions of the tool. My instance of MySQL Workbench will connect to a MySQL database, housed on Ubuntu Server 18.04. You need to make sure you have MySQL set up for remote connections (See: How to set up MySQL for remote access on Ubuntu Server 16.04 (This also works for Ubuntu 18.04).

I will assume you already have MySQL Workbench installed.

Creating a database

The first thing to do is create a database (aka Schema). Open MySQL Workbench and connect to your database server. From the database home screen (Figure A), right-click a blank spot under the SCHEMAS pane and select Create Schema.

Figure A

In the resulting window (Figure B), give the schema (database) a name and (if necessary) select a Default Collation.

Figure B

Once you name your schema, click the Apply button and, when prompted, review the SQL Script and click Apply again. Once the schema is created, close the SQL Script window. You’re ready to create a table.

Creating a table

I’ve created a database called SERVERS, that will be listed in the SCHEMAS pane. Expand that listing, right-click the Tables entry, and select Create Table. In the new window (Figure C), name the table.

Figure C

Double-click under Column Name, and you should be able to type the name of the first column. Once you do that, you can then select the Datatype for the column (Figure D).

Figure D

Continue adding columns until your table is complete. Click Apply to execute the SQL Script. Your table is now ready for data.

Adding data to a table

It’s now time to populate that table with some data. This is where it gets tricky. In previous incarnations of MySQL Workbench, a button could be found on the home screen that took you directly to the table data entry section. That is no more. In order to start adding data to a table, right-click the table (in the SCHEMAS pane) to be modified and click Select Rows. You will then find yourself in a window that allows you to enter data (Figure E).

Figure E

In this window, you can either use the result grid or open the form editor. For the fastest route to success, use the result grid (which is the default). Double-click the first entry in one of your columns and type the data to be added. After entering the necessary data, hit Enter on your keyboard. Double-click under that newly created row and create another. Once you add all of your data, click Apply to execute the SQL Script.

The form editor is just as easy to use; you only need to remember to click the Next Entry button (single right-pointing arrow) to move to the next data row (Figure F), before entering new data.

Figure F

Your database is ready

Congratulations, you successfully created a database, added a table, and entered data into the table. Your database is ready to use.

Subscribe to the Developer Insider Newsletter

From the hottest programming languages to commentary on the Linux OS, get the developer and open source news and tips you need to know. Delivered Tuesdays and Thursdays

Subscribe to the Developer Insider Newsletter

From the hottest programming languages to commentary on the Linux OS, get the developer and open source news and tips you need to know. Delivered Tuesdays and Thursdays