SIN Function - SQL Server to PostgreSQL Migration

SQL Server and PostgreSQL provide SIN function that returns the trigonometric sine.

SQL Server:

  -- Get sine
  SELECT SIN(35.17);
  # -0.574899086600994

PostgreSQL:

  -- Get sine
  SELECT SIN(35.17);
  #  -0.5748990866009935

For more information, see SQL Server to PostgreSQL Migration.