We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Creates a view definition object
v = createView(name,);
Note that the view will not be created in the database until you call the create function on the view definition object.
// basic create ciew v = createView('vUsers'); v.selectStatement("SELECT userid, (FirstName + ' ' + LastName) as fullName FROM users"); v.create();
There was an error while loading. Please reload this page.