Advertisement
Guest User

penjualan

a guest
Aug 26th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. CREATE TABLE `penjualan` (
  2. `idx` int(11) NOT NULL AUTO_INCREMENT,
  3. `nmr_xsaksi` int(9) DEFAULT NULL,
  4. `tanggal` date DEFAULT NULL,
  5. `jam` time DEFAULT NULL,
  6. `kode_brg` char(30) DEFAULT NULL,
  7. `nama_brg` char(90) DEFAULT NULL,
  8. `jumlah_jual` char(6) DEFAULT NULL,
  9. `harga_satuan` int(9) DEFAULT NULL,
  10. `harga_total` int(11) DEFAULT NULL,
  11. PRIMARY KEY (`idx`)
  12. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement