Я взял фрагмент из комментариев @ rob74, который был фантастическим, и изменил его, чтобы он возвращал только имена таблиц. Оригинальный фрагмент также возвращает псевдонимы таблиц. Например.
select * from my_table as mt join other_table using(my_key)
original snippet returns: [my_table, mt, other_table]
new snippet returns: [my_table, other_table]
оригинальный фрагмент от rob74: play.golang.org/p/B31wr2w1AL8
package main
import (
"fmt"
"github.com/xwb1989/sqlparser"
"reflect"
)
func main() {
stmt, _ := sqlparser.Parse("select * from my_table as mt join other_table using(my_key)")
var tables []string
tables = getTableNames(reflect.Indirect(reflect.ValueOf(stmt)), tables, 0, false)
fmt.Printf("%s", tables)
}
func getTableNames(v reflect.Value, tables []string, level int, isTable bool) []string {
switch v.Kind() {
case reflect.Struct:
if v.Type().Name() == "TableIdent" {
// if this is a TableIdent struct, extract the table name
tableName := v.FieldByName("v").String()
if tableName != "" && isTable{
tables = append(tables, tableName)
}
} else {
// otherwise enumerate all fields of the struct and process further
for i := 0; i < v.NumField(); i++ {
tables = getTableNames(reflect.Indirect(v.Field(i)), tables, level+1, isTable)
}
}
case reflect.Array, reflect.Slice:
for i := 0; i < v.Len(); i++ {
// enumerate all elements of an array/slice and process further
tables = getTableNames(reflect.Indirect(v.Index(i)), tables, level+1, isTable)
}
case reflect.Interface:
if v.Type().Name() == "SimpleTableExpr" {
isTable = true
}
// get the actual object that satisfies an interface and process further
tables = getTableNames(reflect.Indirect(reflect.ValueOf(v.Interface())), tables, level+1, isTable)
}
return tables
}