I was told once upon a time, it's worth learning SQL to replace queries as queries bulk out the frontend. So to increase efficiency and reduce memory I thought to convert all my queries in my databases into SQL...
so row sources become SQLs, my append queries become INSERT INTO commands, and so on, so I have 1 or 2 queries, if that, left over. Then everything is run as SQL.
I thought it was logical as the query is just a user friendly way to create SQL anyway?
Or am I mistaking and wasting time?
What do you think?
so row sources become SQLs, my append queries become INSERT INTO commands, and so on, so I have 1 or 2 queries, if that, left over. Then everything is run as SQL.
I thought it was logical as the query is just a user friendly way to create SQL anyway?
Or am I mistaking and wasting time?
What do you think?