Re: Row Counts From Multiple Tables

2014-12-28 Thread Sarma Tangirala
t; >> Hello, >> >> I tried searching for this in the mailing list archive but could not find >> an answer. I want to get the row counts from multiple tables, something >> along the lines of >> >> select count(t1.first_column), count(t2.first_colum

Re: Row Counts From Multiple Tables

2014-12-28 Thread Seungbum Lee
good luck :) 2014-12-28 18:53 GMT+09:00 Sarma Tangirala : > Hello, > > I tried searching for this in the mailing list archive but could not find > an answer. I want to get the row counts from multiple tables, something > along the lines of > > select count(t1.fi

Row Counts From Multiple Tables

2014-12-28 Thread Sarma Tangirala
Hello, I tried searching for this in the mailing list archive but could not find an answer. I want to get the row counts from multiple tables, something along the lines of select count(t1.first_column), count(t2.first_column) from t1, t2; But this query as is does not work. Apologies if