Tag Archives: SQL parsing using java

Parsing SQL CREATE query using JSQLParser

Parsing SQL statements using programming languages are not common. In this article, we will cover how to parse the standard CREATE SQL statement using a Java-based open source JSQLParser There are multiple use-cases for parsing a Create Statement. Suppose if you want to validate the table schema between the source and target system and make… Read More »

Parsing SQL SELECT query using JSQLParser

Update: A new version of this article is available here In the other article, we saw how to parse an insert query and modify the objects in the query with the help of the JSQL Parser. In this article, we will see how to use the JSQL Parser for parsing a simple select query with… Read More »