Posts
Sort by recent activity
Will getting latest change remove any existing table rows?
Will getting latest change remove any existing table rows in changed tables? I don't want to lose my test data.
Align column aliases?
I was wondering if SQL Prompt Pro can right align column aliases? Here's an example:
Before:
SELECT
column1 AS Column1,
column2 AS Column2,
aReallyLongColumnName AS Column3
FROM
som...