0

SQLクエリからテーブル名を抽出したい。

SELECT col1, col2, count(1) as count_all,     FROM     tbl1, tbl2 where condition order by column

結果が欲しい["tbl1", "tbl2"]

クエリするテーブルが複数ある必要はありません。その場合、クエリは次のようになります

SELECT col1, col2, count(1) as count_all,     FROM     tbl1  where condition order by column

そして期待される結果["tbl1"]

前もって感謝します!

4

1 に答える 1

2

これは SQL 文字列内のものと一致する可能性があるため、完全ではないことに注意してください。

test = [
"SELECT col1, col2, count(1) as count_all FROM tbl1, tbl2 where condition order by column",
"SELECT col1, col2, count(1) as count_all FROM tbl1 where condition order by column",
"SELECT col1, col2, count(1) as count_all FROM tbl1",
]
tests.map { |str| str.match(/\s*from\s*([a-z_0-9]+(?:,\s*[a-z_0-9]+)*)\b/i); $1 }
#=> ["tbl1, tbl2", "tbl1", "tbl1"]
于 2012-07-20T11:09:56.270 に答える