1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
SELECT hello_word; ERROR 42S22: Unknown column 'hello_word' in 'field list' SELECT hello_world(12345); hello_world(12345) Hello World! SELECT hello_world(""); hello_world("") Hello World! SELECT hello_world(string); ERROR 42S22: Unknown column 'string' in 'field list' SELECT hello_world("string"); hello_world("string") Hello World! SELECT hello_world(); hello_world() Hello World! |