13 lines
339 B
MySQL
13 lines
339 B
MySQL
|
CREATE OR REPLACE DEFINER=`root`@`localhost`
|
||
|
SQL SECURITY DEFINER
|
||
|
VIEW `vn2008`.`sms`
|
||
|
AS SELECT `t`.`id` AS `id`,
|
||
|
`t`.`senderFk` AS `Id_trabajador`,
|
||
|
`t`.`sender` AS `from`,
|
||
|
`t`.`destination` AS `to`,
|
||
|
`t`.`message` AS `text`,
|
||
|
`t`.`statusCode` AS `sent`,
|
||
|
`t`.`status` AS `response`,
|
||
|
`t`.`created` AS `DATE_ODBC`
|
||
|
FROM `vn`.`sms` `t`
|