Create view across multiple tables

If you're a new user of AppGini, feel free to ask general usage questions, or look for answers here.
Post Reply
suesayram
Posts: 2
Joined: 2016-06-08 14:32

Create view across multiple tables

Post by suesayram » 2016-06-08 14:36

Hi All,

In plain SQL I can create a view instead of a table:

Code: Select all

CREATE VIEW view_name AS
SELECT column_name(s)
FROM table_nameA, table_nameB
WHERE condition
In AppGini v 5,5, I only see a button to create table. How do I create a view?

Sue

grimblefritz
AppGini Super Hero
AppGini Super Hero
Posts: 336
Joined: 2015-12-23 16:52

Re: Create view across multiple tables

Post by grimblefritz » 2016-08-30 10:05

As you've probably learned, AppGini does not (yet) support views. It's been discussed and the author has indicated it's a potential for a future version, but there's no ETA for it.

Meanwhile, search the forum. Someone recently posted a workaround that allowed views to be used.

Post Reply