Register SQL Views

Overview

An SQL View can be thought of as a virtual table — one that does not physically contain any data but rather stores useful SQL queries to improve database/user efficiency. While most developers realize how powerful an SQL view can be while running queries, they can now harness the same functionality within m-Power. Below are just two examples of excellent reasons to build and use an SQL view:

  • Limiting Records — Let’s say that you have a Sales History file with data from the past 10 years and you know that you would never want to report over more than the last 3 years. Of course, you could build a record selection within each of your m-Power applications to handle this. Your other option would be to create an SQL view over this table that only includes the last 3 years of data.
  • Joining — Another example of a useful view could be that you have a complicated query — one that utilizes numerous tables, joining on many fields. You could, one hand, build your application manually, using m-Power to join out to all of the necessary tables. Or, you could create an SQL join that includes all necessary tables. Once your SQL View is created, all included fields will appear in m-Power as belonging to one table, which makes creating each subsequent application much easier!

Best of all, as soon as your data changes, your view will automatically be updated! Even more information on SQL Views can be found here.

Step 1 — Create an SQL View

To create your SQL View, using the “Limiting Records” example, simply enter in your SQL query using the following syntax:

CREATE VIEW SCHEMALIB/VIEWNAME AS SELECT FIELD1 as FIELDABC, FIELD2 as FIELDDEF, FIELD3 FROM SCHEMALIB/TABLE1 WHERE FIELD1 = VAL1 and FIELD2 = VAL2

In the example above, only 3 fields were included in the view. Additionally, FIELD1 and FIELD2 were renamed to FIELDABC and FIELDDEF, respectively.

To create an SQL View that uses the “Joining” example, simply enter in your SQL query using the following syntax:

CREATE VIEW SCHEMALIB/VIEWNAME AS SELECT * FROM SCHEMALIB/TABLE2 T01 left outer join SCHEMALIB/TABLE1 T02 on T02.FIELD2 = T01.FIELD1

In this example, all fields from Table1 and Table2 have been added to this view.

Editor’s Note: There are countless reasons you would want to create and utilize SQL Views. For the sake of brevity, we have listed two of the more common approaches.

Step 2 — Load Your SQL View into m-Power

Registering SQL Views to m-Power is the same process as registering tables. Simply access the “Admin” menu, select “Tables”, and then click the “Register” button. The “Type” column will help you determine if your data is contained in a physical table or in an SQL view.

Finding within m-Power your view

Note: All physical tables are listed first, followed by all views, if the selected schema contains any. If you do not see your view at first, please be sure to scroll to the end of the list to find your newly created view.

Step 3 — Using your SQL View in an Application

Create your application as you normally would — your SQL view will be in the same list as your physical table!

Building a Maintenance application over an SQL view, and adding/updating/deleting a record will also modify the record in the physical table.

SQL is unable to add/update/delete records from an SQL view where multiple tables have been joined together. If you try, you will see an SQL error message

Updated on March 31, 2023

Was this article helpful?

Related Articles

Need Support?
Can’t find the answer you’re looking for? Don’t worry we’re here to help!
Contact Support