Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » U++ Library support » U++ SQL » Select from two temporary tables
Select from two temporary tables [message #38027] Wed, 28 November 2012 19:47 Go to next message
Zbych is currently offline  Zbych
Messages: 325
Registered: July 2009
Senior Member
Hi,

I need to select columns from two temporary tables, but there is no version of From that takes two SqlSets.

Can you Mirek add this to Sqlexp.h and SqlStatement.cpp:

SqlSelect& From(const SqlSet& set1, const SqlSet& set2);

SqlSelect& SqlSelect::From(const SqlSet& table1, const SqlSet& table2) {
	String ts1 = table1(SqlSet::SETOP + 1);
	String ts2 = table2(SqlSet::SETOP + 1);
	text = "select " + text + " from " + ts1 + ", " + ts2;
	tables << ',' << Filter(ts1, CharFilterNotWhitespace);
	tables << ',' << Filter(ts2, CharFilterNotWhitespace);
	on = false;
	return *this;
}


BTW. Postgres doesn't like parentheses around embeded select, so
AsTable should look like this:

SqlSet SqlSelect::AsTable(const SqlId& tab) const
{
	StringBuffer t;
	t << SqlCase(MSSQL|PGSQL, "")("(") //<---PGSQL added
	<< "(" << text << ") as \t" << tab.ToString() << '\t'
	<< SqlCase(MSSQL|PGSQL, "")(")");  //<---PGSQL added
	return SqlSet(String(t), SqlSet::HIGH);
}

Re: Select from two temporary tables [message #38075 is a reply to message #38027] Thu, 29 November 2012 17:42 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
OK, I might, but why not just use some form of join instead?

Mirek
Re: Select from two temporary tables [message #38078 is a reply to message #38075] Thu, 29 November 2012 19:29 Go to previous messageGo to next message
Zbych is currently offline  Zbych
Messages: 325
Registered: July 2009
Senior Member
Maybe you are right.

[Updated on: Fri, 30 November 2012 08:16]

Report message to a moderator

Re: Select from two temporary tables [message #39300 is a reply to message #38078] Mon, 11 March 2013 08:53 Go to previous messageGo to next message
Zbych is currently offline  Zbych
Messages: 325
Registered: July 2009
Senior Member
Hi,

Mirek, I just want to remind you that AsTable still has wrong postgres syntax:

Current syntax:
select COLUMN from ((select COLUMN from TABLE1) as TABLE2)

Correct syntax:
select COLUMN from (select COLUMN from TABLE1) as TABLE2


Fix:
SqlSet SqlSelect::AsTable(const SqlId& tab) const
{
	StringBuffer t;
	t << SqlCase(MSSQL|PGSQL, "")("(") //<---PGSQL added
	<< "(" << text << ") as \t" << tab.ToString() << '\t'
	<< SqlCase(MSSQL|PGSQL, "")(")");  //<---PGSQL added
	return SqlSet(String(t), SqlSet::HIGH);
}

Re: Select from two temporary tables [message #39301 is a reply to message #39300] Mon, 11 March 2013 10:40 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
Fixed, thanks & sorry.

Mirek
Re: Select from two temporary tables [message #39302 is a reply to message #39301] Mon, 11 March 2013 12:56 Go to previous message
Zbych is currently offline  Zbych
Messages: 325
Registered: July 2009
Senior Member
Ok, thank you.
Previous Topic: Sqlite DB readonly
Next Topic: Some unexpected differences between Sqlite3 and MySql in Upp
Goto Forum:
  


Current Time: Fri Mar 29 16:47:46 CET 2024

Total time taken to generate the page: 0.02284 seconds