skip to Main Content

Strange characters on MySQL Point column

I have a POINT column to store coordinates, and here is my insert query: INSERT INTO _coordinates_test (coordinates) VALUES(POINT(59.356125477261266, -2.8759361517393898)) But here is what i get on the column (coordinates): …•­M@“Ö(ÐêÀ I also tried reading coordinates like this: SELECT POINT(59.356125477261266,…

VIEW QUESTION

Using mysql 8 window functions

My salary table looks like this, employeeId Salary salaryEffectiveFrom 19966 10000.00 2022-07-01 19966 20000.00 2022-07-15 My role/grades table looks like this, employeeId grade roleEffectiveFrom 19966 grade 3 2022-07-01 19966 grade 2 2022-07-10 I am trying to get the salary a…

VIEW QUESTION
Back To Top
Search