Hello!
I'd like to select the maximum value of a certain column (let's call it `X_IDNTY'), from every table, that has such a column. Is such a thing possible with SQL (perhaps, Sybase and/or Oracle flavors?), or do I need to write external program to get the list of tables first and construct the query outside?
Something like:
TABLE_NAME max(X_IDNTY)
------------ --------------
................. ...........
Thanks!