Stay informed about any major changes. Click here to subscribe
Execute SQL Query
Execute SQL Query tool will execute any SQL statement you specify against
a database.
Connection
Sets the database connection properties. This option allows you to choose
the name of the connection from the drop-down list.
SQL Statement
Specifies an SQL statement that will be
executed against a database.
Executing multiple SQL statements
You can combine more than one statement
by separating each statement with the keyword GO on a new line. For example,
the program will split SQL statement below into two separate commands.
The first line will be executed first and the NewCustomers table will
be deleted. After that, SELECT INTO statement will create a new table
and copy all records from the Customers table.