-
Notifications
You must be signed in to change notification settings - Fork 238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extract table name from select statement with joins #46
Comments
buffer:= sqlparser.NewTrackedBuffer(nil) |
stmt, err := sqlparser.Parse(sql)
if err != nil {
fmt.Println("Error: " + err.Error())
}
tableNames := make([]string, 0)
_ = sqlparser.Walk(func(node sqlparser.SQLNode) (kontinue bool, err error) {
switch node := node.(type) {
case sqlparser.TableName:
tableNames = append(tableNames, node.Name.CompliantName())
}
return true, nil
}, stmt)
fmt.Println(tableNames) |
hey @Hassnain-Alvi can u please help |
sure whats the problem you are facing ? |
I have started today only and I am unable to get through its documentation for parsing table name from simple expression |
@Hassnain-Alvi I am not even able to use ins.Table.name reference your above mentioned code it shows error |
@raintean thanks for the solution but it's not valid if query has alias of the join or subquery. E.g. The result of this query |
@sananguliyev Have you found a solution for that? |
@virgiliosanz I have stopped working on that since more than a year. I remember I had workaround but do not remember what was that. In case I find I will let you know. |
@virgiliosanz I have found my workaround. Instead of using Walk method of the SQL parser, I switched to using the Go's reflect in a recursive function. |
But how do you check it, because I cannot see the difference in type when
it is an alias or a real table name.... Do you check the 2 or 3 previous
nodes.or something liike that?
El mié, 14 ago 2024, 21:04, Sanan Guliyev ***@***.***>
escribió:
… @virgiliosanz <https://github.com/virgiliosanz> I have found my
workaround. I was using Go reflect instead of using Walk method of sql
parser.
—
Reply to this email directly, view it on GitHub
<#46 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AACBAVU2QENGBL2SAXI6OPLZROS4FAVCNFSM6AAAAABMP6YQE2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDEOBZGYZDAMRUHE>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
@virgiliosanz yes, I was passing previous node type whether it's |
Hi @sananguliyev, many thanks. I make it work. I past my code here just for future reference: // getAffectedTables returns the affected tables for a given query.
func getSelectAffectedTables(stmt *sqlparser.Statement) ([]string, error) {
affectedTables := make([]string, 0)
var previous sqlparser.SQLNode
walkLog := func(node sqlparser.SQLNode) (kontinue bool, err error) {
switch n := node.(type) {
case sqlparser.TableName:
switch previous.(type) {
case *sqlparser.AliasedTableExpr:
table := normalizeTableName(n.Name.CompliantName())
affectedTables = append(affectedTables, table)
// fmt.Printf("%s: TableName: %s\n", queryType.String(), table)
}
// default:
// fmt.Printf("%s: <%T> [%v]\n", queryType.String(), n, n)
}
previous = node
return true, nil
}
sqlparser.Walk(walkLog, *stmt)
return uniqueNonEmptyElementsOf(affectedTables), nil
}
func getAffectedTables(stmt *sqlparser.Statement) ([]string, error) {
affectedTables := make([]string, 0)
walkLog := func(node sqlparser.SQLNode) (kontinue bool, err error) {
switch n := node.(type) {
case sqlparser.TableName:
table := normalizeTableName(n.Name.CompliantName())
// fmt.Printf("%s: TableName: %s\n", queryType.String(), table)
affectedTables = append(affectedTables, table)
// default:
// fmt.Printf("%s: <%T> [%v]\n", queryType.String(), n, n)
}
return true, nil
}
sqlparser.Walk(walkLog, *stmt)
return uniqueNonEmptyElementsOf(affectedTables), nil
} |
Thanks for sharing this. That would be the another way to keep the previous node in order to only extract table names, not aliases. |
I am using sqlparse to get table names from queries. My queries are complex and contain joins as well.
Fetching table name from an insert statement is easy but with select i am getting hard time
Here is my code:
I am stuck after that because it returns a table indent and the fields are not exported
Sorry, i am new to golang so not sure if its the right way to do this
Can you please guide me to extract all tables from a complex select query with joins?
The text was updated successfully, but these errors were encountered: