On JDBC data sources SQL with column aliases don't return any rows.<!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internalTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:0; } .sp td{ border-bottom: 1px solid; border-right: 1px solid; border-color:#E0E0E0; background-color: #ffffff; height: 20px; padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; } .sphr td{ border-right: 1px solid; border-bottom: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; height: 20px; } .title { color: #D1232B; font-weight:; font-size:25px; } .hd1{ color: #D1232B; font-weight:; font-size:18px; } .hd2{ color: #646464; font-weight:bold; font-size:16px; } .hd3{ color: #7a7a7a; font-weight:; font-size:16 px; text-decoration:; } .hd4{ color: #000000; font-weight:bold; font-size:14 px; text-decoration:; } --> JDBC Data Sources with SQL Column Aliases Return 0 Rows ProblemWhen using a JDBC data source, if the SQL statement contains column aliases, no rows are returned. SymptomsSteps to reproduce:Create a SQL JDBC data sourceAdd a SQL query with column aliases, for example: select <column> as <aliasName> from <table>Test by loading 20 records. The query will run, but it will not return any rows.The same query without the column alias returns data back. (select <column> from <table>). CauseThis is due to PRB648117 - SQL Aliases do not work with JDBC Data Source imports. WorkaroundAdd the following property to the JDBC connection URL to enforce the old behavior: ?useOldAliasMetadataBehavior=true 1. Personalize the form and add the connection URL 2. Open the data source 3. Append the property to the end of the connection URL. I.e. jdbc:mysql://localhost/glide?useOldAliasMetadataBehavior=true