This example shows how a point's name and its current value could be displayed in Geo SCADA when hovering over map markers. A user query object needs to be created and attached to your map set. The user query object needs to run a SQL query of the below format. The highlighted part of the SQL query is what gets displayed in the tooltip.
SELECT
FULLNAME, GISLOCATION->LATITUDE, GISLOCATION->LONGITUDE, NAME || '<br> ' || CURRENTVALUEFORMATTED AS TOOLTIP
FROM
CDBPOINT
WHERE
FULLNAME LIKE '%Population%'
SELECT
FULLNAME, GISLOCATION->LATITUDE, GISLOCATION->LONGITUDE, NAME || '<br> ' || CURRENTVALUEFORMATTED AS TOOLTIP
FROM
CDBPOINT
WHERE
FULLNAME LIKE '%Population%'