7

I am working with existing project, and I am found a sql query with sql-function like

SELECT * FROM money WHERE  amount = float_convert(0.1);

This Query is Working Properly, But I want to see and edit the function float_convert();

I am already tried SHOW FUNCTION STATUS,

It's only showing functions status, I need to view the function definition.

BenMorel
  • 34,448
  • 50
  • 182
  • 322
Selvaa
  • 75
  • 1
  • 9

1 Answers1

10
SHOW CREATE FUNCTION float_convert

or

SHOW CREATE VIEW float_convert

perhaps ?

Tuncay Göncüoğlu
  • 1,699
  • 17
  • 21