View: nornix_site.vpageresources

Structure
NameTypeNullKeyDefaultExtraComment
Handlervarchar(64)YES
DatalongblobNO
UNIX_TIMESTAMP(`TS`)bigint(10)NO0
Descriptionvarchar(127)NO
Widthint(10) unsignedNO0
Heightint(11) unsignedNO0
Namevarchar(80)NO
DocumentNoint(10) unsignedNO0
MimeTypeNoint(10) unsignedNO0
Information
AlgoritmUpdateable
UNDEFINED YES
Explain
IdSelect typeTableTypePossible keysKeyRefRowsExtra
1SIMPLErALL13
1SIMPLEcteq_refPRIMARYPRIMARYnornix_site.r.ContentTypeNo1
CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER 
VIEW `nornix_site`.`vpageresources` AS 
(select `ct`.`Handler` AS `Handler`,
`r`.`Data` AS `Data`,
unix_timestamp(`r`.`TS`)
AS `UNIX_TIMESTAMP(``TS``)`,
`r`.`Description` AS `Description`,
`r`.`Width` AS `Width`,
`r`.`Height` AS `Height`,
`r`.`Name` AS `Name`,
`r`.`DocumentNo` AS `DocumentNo`,
`r`.`MimeTypeNo` AS `MimeTypeNo` 
from (`nornix_site`.`pageresource` `r` left join `nornix_system`.`contenttype` `ct` on ((`ct`.`No`
= `r`.`ContentTypeNo`))))