paypaltst

This commit is contained in:
mynah
2019-03-28 04:06:59 -06:00
parent 63ffc6c7d4
commit 2848f7ca42
11 changed files with 260 additions and 14 deletions

View File

@@ -0,0 +1,4 @@
select
a.id,a.nombre,a.existencia,a.imagen,a.precio,a.activo,a.descripcion,date(a.vigencia) as vigencia,b.nombre as entrega
from tienda as a inner join entrega as b where a.entrega_id=b.id
and a.id=?;

View File

@@ -0,0 +1,4 @@
select
correo,telefono as tel, observacion as obs,date(ultima) as ultima
from usuario where id=?;

View File

@@ -0,0 +1,3 @@
select
id,nombre,existencia,precio,activo
from tienda order by id;

View File

@@ -0,0 +1,4 @@
select
id,usuario,nombre
from usuario order by usuario;