How can I display only the hour (without date) from a field created with the Hour tool?
Use the SQL CONVERT function: CONVERT(VARCHAR, [Field Name], 108). The format code 108 ensures only the hour is returned (e.g., '14:30:25').
Use the SQL CONVERT function: CONVERT(VARCHAR, [Field Name], 108). The format code 108 ensures only the hour is returned (e.g., '14:30:25').