SQLite table aliases effecting the performance of queries
How does SQLite internally treats the alias? Does creating a table name alias internally creates a copy of the same table or does it just refers to the same table without creating a copy? When I create multiple aliases of the same table in my code, performance of the query is severely hit! In my case, I have one table, call it MainTable with namely 2 columns, name and value. I want to select multiple values in one row as different columns. for example Name: a,b,c,d,e,f Value: p,q,r,s,t,u such that a corresponds to p and so on. I want to select values for names a,b,c and d in one row => p,q,r,s