data from multiple tables
Hi,
I have a general question.
Is it a good practice to get the data from multiple tables like the following.Does it affect the performance?IF yes what way should I use to get data from multiple tables:
what sql query for ex?
Rs.open "SELECT * FROM layout",Conn,3,3
Rs2.open "SELECT * FROM config",Conn,3,3
Rs3.open "SELECT * FROM cards where cards.cardid=" & intCardID &" and cards.active=1",Conn,3,3
Rs4.open "SELECT * FROM bg where active=1",Conn,3,3
Rs5.open "SELECT * FROM music where active=1",Conn,3,3
Rs6.open "SELECT * FROM effects where active=1",Conn,3,3
Rs7.open "SELECT * FROM poems where active=1",Conn,3,3
|