No pulldown like on demo (newbie)

When I watch the video about creating a graph they select their database and then select their data items.
When I do the same I select my database and some programming stuff pops up and I cannot select my data variables.
Maybe I don’t have something installed?
I can pull up data with a table using “SELECT * from Item8”

using Grafana 5.3.2 on Ubuntu server with MySQL data server.

Maybe it is supposed to work like this and I am to the script. Grafana does give me an example, shown here.

SELECT
  UNIX_TIMESTAMP(<time_column>) as time_sec,
  <value column> as value,
  <series name column> as metric
FROM <table name>
WHERE $__timeFilter(time_column)
ORDER BY <time_column> ASC

so I have to apply my settings approprately. And that’s the problem. I don’t know where to put what.
I have a running MySQL database full of data. My database is called “openhab” and my other data is labeled as shown below:

Database changed
mysql> SHOW TABLES;
+-------------------+
| Tables_in_openhab |
+-------------------+
| Item1             |
| Item10            |
| Item11            |
| Item12            |
| Item13            |
| Item2             |
| Item3             |
| Item4             |
| Item5             |
| Item6             |
| Item7             |
| Item8             |
| Item9             |
| Items             |
+-------------------+
14 rows in set (0.00 sec)

mysql> DESCRIBE Items;
+----------+--------------+------+-----+---------+----------------+
| Field    | Type         | Null | Key | Default | Extra          |
+----------+--------------+------+-----+---------+----------------+
| ItemId   | int(11)      | NO   | PRI | NULL    | auto_increment |
| ItemName | varchar(200) | NO   |     | NULL    |                |
+----------+--------------+------+-----+---------+----------------+
2 rows in set (0.00 sec)

mysql> DESCRIBE Item9;
+-------+----------+------+-----+---------+-------+
| Field | Type     | Null | Key | Default | Extra |
+-------+----------+------+-----+---------+-------+
| Time  | datetime | NO   | PRI | NULL    |       |
| Value | double   | YES  |     | NULL    |       |
+-------+----------+------+-----+---------+-------+
2 rows in set (0.00 sec)

mysql> SELECT * FROM Items;
+--------+----------------------------------+
| ItemId | ItemName                         |
+--------+----------------------------------+
|      1 | livingtemp                       |
|      2 | LocalWeather_Current_Temperature |
|      3 | 82663bme280temp                  |
|      4 | 82663bme280humid                 |
|      5 | 82663bme280pressure              |
|      6 | 82663bme280altitude              |
|      7 | 82662bme280temp                  |
|      8 | 82662bmp280temp                  |
|      9 | 82662bmp280temp2                 |
|     10 | 82662dht22temp2                  |
|     11 | 82662mpx5010press2               |
|     12 | 82662bme280temp2                 |
|     13 | livinghumid                      |
+--------+----------------------------------+
13 rows in set (0.00 sec)

.----------------------------------------------------------------
I have made many attempts at guessing but seam to be getting nowhere.