Is it possible to pass DDL statements as function parameters?
Something like this:
select MyAlterTable('Employees', add column CA name(250));
select MyAlterTable('Customers', add column CA name(250));
final statement would be:
alter table Employees
add column CA name(250)
Or should I pass them as string and use execute
command?