Jump to content

MySQL Views


The Little Guy

Recommended Posts

You can create a View very easily:

 

CREATE VIEW viewname AS

SELECT * FROM tablename;

 

Views can then be used like tables.

 

So...

 

SELECT * FROM viewname;

 

They're mostly used to cordon off what pieces of data certain users can see. For example, a department manager might get to see a view that has employee names and addresses, whereas a HR manager might get to see a view that has the name, address and salary.

 

Link to comment
https://forums.phpfreaks.com/topic/217787-mysql-views/#findComment-1130470
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.