On Sun, Jan 03, 2010 at 10:47:01AM +0100, Mathieu SCHROETER scratched on the wall: > Hello, > > I've a simple question about the bind functions. If it can > be realistic to have in the future, a way to bind a sub-query > in a query?
Doubtful. Sub-queries are a syntactical thing and exist because of limitations in the SQL language. From the perspective of the database engine, sub-queries are merged into the main query as one big operation. Depending on your situation, you might be able to use views, temporary views, or temporary tables. -j -- Jay A. Kreibich < J A Y @ K R E I B I.C H > "Our opponent is an alien starship packed with atomic bombs. We have a protractor." "I'll go home and see if I can scrounge up a ruler and a piece of string." --from Anathem by Neal Stephenson _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

