I do want to insert data into my Google Cloud database with using MySQL, I did it fairly well with others table expect this one.
My database structure :
- item_id int(11) primary key - autoincrement
- bill_id int(11) foreign key
- name text
- unit text
- quantity int(11)
- usage long text
- price float
INSERT INTO BillItem (bill_id , name , unit , quantity , price,usage) VALUES ('8','Mebendazol 500 mg','Viên','5','2500','Chiều trước khi ăn') ;
Again, thank you a bunch for your assistance!