can I select from database according to multiple conditions, if so, how is that? select * from database wher a= 15,b=30,c>6,..ect
You can use AND or OR in the SQL statement. Example : SELECT * FROM table WHERE col1 = 10 AND col2 = 200
You can use AND in the SQL statement. Example : SELECT * FROM table WHERE a = 15 AND b = 30 AND c > 6 Sheetal