23 lines
678 B
MySQL
23 lines
678 B
MySQL
|
CREATE OR REPLACE DEFINER=`root`@`localhost`
|
||
|
SQL SECURITY DEFINER
|
||
|
VIEW `vn2008`.`Tipos`
|
||
|
AS SELECT `it`.`id` AS `tipo_id`,
|
||
|
`it`.`code` AS `Id_Tipo`,
|
||
|
`it`.`name` AS `Tipo`,
|
||
|
`it`.`order` AS `Orden`,
|
||
|
`it`.`categoryFk` AS `reino_id`,
|
||
|
`it`.`workerFk` AS `Id_Trabajador`,
|
||
|
`it`.`life` AS `life`,
|
||
|
`it`.`isPackaging` AS `isPackaging`,
|
||
|
`it`.`density` AS `density`,
|
||
|
`it`.`isInventory` AS `inventory`,
|
||
|
`it`.`created` AS `odbc_date`,
|
||
|
`it`.`making` AS `confeccion`,
|
||
|
`it`.`temperatureFk` AS `Temperatura`,
|
||
|
`it`.`promo` AS `promo`,
|
||
|
`it`.`maneuver` AS `maneuver`,
|
||
|
`it`.`target` AS `target`,
|
||
|
`it`.`topMargin` AS `top_margin`,
|
||
|
`it`.`profit` AS `profit`
|
||
|
FROM `vn`.`itemType` `it`
|