Advertisement
Guest User

Untitled

a guest
May 4th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.20 KB | None | 0 0
  1. SELECT * FROM artikel;
  2.  
  3. SELECt artikelname AS Artikel, preis AS Nettopreis, preis*1.19 AS Bruttopreis
  4. FROM artikel;
  5.  
  6. SELECT artikel AS Artikel, preis AS Einzelpreis, preis*50 AS Gesamtpreis
  7. FROM artikel;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement