Hi,
I just started using HeideSQL with a PostgreSQL database that was setup by someone else. I have no need or intention to make changes to this database, but I am trying to learn how to pull information out of it when needed. I have experience with SQL on other platforms, but this is my first time using HeideSQL and PostgreSQL. I've already been successful in creating some simple queries, and I'd like to start learning how to build more complex queries. One thing that isn't clear to me is whether the SQL syntax I can use is governed by HeideSQL or by PostgreSQL?
From what I've seen so far, it seems that I am required to enclose table names and field names in double-quotes, whereas I don't see this being a requirement in some PostgreSQL documentation I've found. For example, the following query works..
SELECT * FROM "Associate" WHERE "TenantTag" = 'HPMile'
...whereas the following query results in an error...
SELECT * FROM Associate WHERE TenantTag = 'HPMile'
Within HeideSQL, when I go to Help | SQL Help, I get a message that says "SQL Help not available. HELP <keyword> requires MySQL 4.1 or newer"
If anyone can point me towards the correct reference I should use as I am trying to learn how to write queries on this platform, I'd greatly appreciate it.
Thanks in advance, Paul