SQLize Online / PHPize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
/* Create a PL/SQL block that declares variables for an employee's first name, last name, and salary. Set some values and display them using DBMS_OUTPUT. */ CREATE OR REPLACE makeEmployee ( BEGIN emp_first_name:= 'Prany'; emp_last_name:= 'Hsa'; DBMS_OUTPUT.PUT_LINE('Fullname ' || emp_first_name || emp_last_name) END; )

Stuck with a problem? Got Error? Ask ChatGPT!

Copy Clear