Hello reader(s),
In table1 i have 3 columns named: emp_id, month, year. First i'm inserting emp_id from a recordset with validation from a text box. Problem is: In the same row i need to insert data of month and year column from individual text box.
Code should like:
insert into table1 (month, year) value ((textmonth.text), (textyear.text)) where table1(emp_id)=(textid.text)
I'm coding in VB 6.0 and very new with VB 6.0. can any one please help me with SQL code??