Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.17 KB | None | 0 0
  1. select count(*) total FROM (SELECT
  2. f.*,
  3. c.*
  4. FROM factura f
  5. JOIN clientes c ON c.id_cliente = f.id_cliente
  6. HAVING
  7. f.fechaFactura BETWEEN '2020-02-01' and '2020-02-29')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement