I am using sqlParser to fetch information from sql query string. I want to replace the table name that i want to query.
sql := "SELECT * FROM userTable WHERE userId = 1; "
stmt, _ := Parse(sql)
i want to replace userTable to userTable01 can someone guide me how to replace using this sqlparser?