Home > database >  SQL select 123 as test from type dual I'd like to field specifies how to achieve?
SQL select 123 as test from type dual I'd like to field specifies how to achieve?

Time:09-16

As title, the test field for char (5)

CodePudding user response:

Select the cast (' 123 'as char (5)) as the test from dual;

  • Related