First off, the data type timestamp in PostgreSQL is timestamp without time zone by default. The other option is timestamp with time zone (timestamptz for short).
Internally, timestamps are stored as integer representations of the count of seconds since '1970-01-01 0:0' (which equals the UNIX epoch value).
timestamp
If you define a data type timestamp [without time zone] you are telling Postgres: "I am not providing a time zone explicitly, assume the current time zone instead. Postgres saves the timestamp as is - ignoring a time zone modifier if you should add one!
When you later display that timestamp, you get back what you entered literally. With the same time zone setting, all if fine. If the time zone setting for the session changes, so does the meaning of the timestamp - the value stays the same.
timestamptz
Handling for timestamp with time zone is subtly different. I quote the manual here:
For timestamp with time zone, the internally stored value is always in UTC (Universal Coordinated Time ...)
Bold emphasis mine. The time zone itself is never stored. It is used to compute the according UTC timestamp, which is stored. If you don't append a time zone modifier for a timestamptz on input, the local time zone of the session is assumed. All computations are done with UTC timestamp values. If you have to (or may have to) deal with more than on time zone, you should use timestamptz.
Clients like psql or pgAdmin (or Ruby) are presented with the UTC timestamp value according to the current time zone (timestamp or timestamp with time zone alike) or according to a requested time zone (see below). It is always the same point in time, only the display format varies. Or, how the manual puts it:
All timezone-aware dates and times are stored internally in UTC. They
are converted to local time in the zone specified by the timezone
configuration parameter before being displayed to the client.
Consider this simple example (in psql):
db=# SELECT '2012-03-05 20:00+03'::timestamp with time zone;
timestamptz
------------------------
2012-03-05 18:00:00+01
Bold emphasis mine. What happened here?
I chose an arbitrary time zone offset +3. To Postgres, this is just one of many ways to input the UTC timestamp 2012-03-05 17:00:00. The result of the query is displayed in the format for the current time zone: 2012-03-05 18:00:00+01. (My server in Vienna/Austria is configured with the according time zone +1.)
Postgres has already forgotten how this value has been entered. All it remembers is the value and the data type. Just like with a decimal number. '03.4'::numeric, '3.40'::numeric or '3.4'::numeric - all result in the exact same internal value.
As soon as you get a grasp on this logic, you can do anything you want. All that's missing now, is a tool to interpret or represent timestamp literals according to a specific time zone. That's where the AT TIME ZONE construct comes in. Be aware of two different use cases. timestamptz is converted to timestamp and vice versa.
To enter the UTC timestamp 2012-03-05 17:00:00:
SELECT '2012-03-05 17:00:00'::timestamp AT TIME ZONE 'UTC'
To display the same timestamp value as UTC timestamp:
SELECT '2012-03-05 17:00:00'::timestamp AT TIME ZONE 'UTC' AT TIME ZONE 'UTC'
That's right, AT TIME ZONE 'UTC' twice. The first one interprets the timestamp literal as UTC timestamp and outputs the type timestamptz. The second one converts it back to timestamp [without time zone]. Or, less confusing:
SELECT ts AT TIME ZONE 'UTC'
FROM (VALUES
('2012-03-05 17:00:00+0')
,('2012-03-05 18:00:00+1'::timestamp with time zone)
,('2012-03-05 18:00:00+1'::timestamp) --1loaded footgun!
,('2012-03-05 11:00:00'::timestamp AT TIME ZONE '+6')
,('2012-03-05 17:00:00'::timestamp AT TIME ZONE 'UTC')
,('2012-03-05 10:00:00'::timestamp AT TIME ZONE 'Mexico/BajaSur') --2
,( TIMESTAMP '2012-03-05 07:00:00' AT TIME ZONE 'HST') --2
) AS v(ts);
Returns 7 (6) identical rows of the same UTC timestamp 2012-03-05 17:00:00.
1 The third row, marked as loaded footgun works for me, but only by coincidence. If you explicitly cast a timestamp literal to timestamp [without time zone], the time zone offset will be ignored! It is interpreted according to the local time zone instead, which happens to be the same time zone +1 in my case. But probably not for you - which will result in a different value.
2 Note that the last two rows with time zone name and times zone abbreviation for Hawaii time are subject to DST and may differ.
Daylight Saving Time is not among the brightest ideas humanity ever came up with.
Because your database is in UTC, AT TIME ZONE 'UTC' is the default and can be dropped locally.
As to your questions:
User stores a time, say March 17, 2012, 7pm. I don't want timezone
conversions or the timezone to be stored.
Time zone itself is never stored. Use one of the methods above to enter a UTC timestamp.
And:
I only use the users specified time zone to get records 'before' or
'after' the current time in the users local time zone.
You can use one query for all clients in different time zones.
For absolute global time:
SELECT * FROM tbl WHERE time_col > (now() AT TIME ZONE 'UTC')::time
For time according to the local clock:
SELECT * FROM tbl WHERE time_col > now()::time
Not tired of background information on date/time handling, yet? There is more in the manual.