Hello there, what is wrong with this query?
INSERT INTO table1 VALUES id, pic0, pic1, pic2, pic3, pic4 FROM table2 WHERE condition1 = 'cond1' AND condition2 = 'cond2' AND age = '18' AND ( weight = '100 - 115 lbs' OR weight = '115- 130 lbs' ) AND hairlength <> 'short'
Conditions are for table2. I want to insert into table 1 just the rows from table two which meet the conditions set my me after WHERE clause.
Thank u