Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

select * from xtDOInvoiceLine

where DONbr like '%1822%'


CREATE TABLE xtTenkermandor
(
NIK int,
name varchar(255),
status varchar(10),
Absen int,
Ket varchar(255)
);
CREATE TABLE xtdetailduamat
(
ItemMat int,
satMat varchar(255),
totalMat int,
);
CREATE TABLE xtdetailduatools
(
Itemtools int,
sattools varchar(255),
totaltools int,
);
jenifer_karokaro@yahoo.com
andrian_p1986@yahoo.co.id
CREATE TABLE xtdetailduamac
(
Itemmac int,
satmac varchar(255),
totalmac int,
);
CREATE TABLE xtdetailduaveh
(
Itemveh int,
satveh varchar(10),
totalveh int,
);
Create View Tes untuk Pivot table
create view xvtes
as select ClassId,CustId,Name,Addr1,Addr2,City,Phone,Fax
from customer
Join table membuat report Goods receipt Note
select * from batch a inner join POReceipt b on
a.BatNbr = b.BatNbr and
a.Module = 'PO'
create table xttes
(
nama varchar(

You might also like