If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
Is there a way to remove a prefix from each column name in a result, with a select statement, without having to specifically mention each column name? It might seem rather pointless but I'd like to use this in a joined table view where each table uses a different prefix, allowing me to update both tables without using the prefix.
I'd like to prevent having to specifically specify each column like 'bla_blaat AS blaat, bla_blabla AS blabla, etc.' since this can become a very long list which you'd have to update each time you change the original table(s).
Achieving the goal from the other side on UPDATE isn't possible or preferable either. The DB probably won't allow me to be non-specific about the column names and setting the values not including a column name forces me to maintain a very accurate order of specifying to values. Dropping the prefixes would be the easiest solution but this is something I'd like to prevent.
The following didn't work as expected: "SELECT * AS SUBSTRING(*, LOCATE('_', *) + 1) FROM user".
It seems you can do all sorts of tricks after the SELECT but non include using the * wild card.