How to create a VIEW instead of a TABLE?
Posted: 2016-06-12 06:20
Hi All,
I can create a view in MySQL easily enough..
but I don't see how to do this in AppGini. Am I missing anything?
Sue
I can create a view in MySQL easily enough..
Code: Select all
CREATE VIEW view_name AS
SELECT column_name(s)
FROM table_name
WHERE condition
Sue