Posts by Anônimo • 11 points
2 posts
-
0
votes2
answers294
viewsA: Take field letters in MYSQL
With the link sent by R. Santos, I was able to create my Function that worked: DELIMITER $$ CREATE FUNCTION `meubanco`.`GetNumber` (field varchar(100)) RETURNS VARCHAR(100) BEGIN DECLARE ls INTEGER;…
-
1
votes2
answers294
viewsQ: Take field letters in MYSQL
I have a field with information in this pattern: "PLC__Line" 34355655413.3912. What can I use to take out the letters, _ and " in a select, leaving only the numbers and the dot? In Postgresql I know…