Ich habe ein komisches SQL Problem. (eingesetzte DB:MySQL)
Ich will in einer Abfrage eine Spalte als String zusammengesetzt aus mehreren Spalten aufbauen.
Das hat so bisher gut geklappt:
SELECT
concat( 'sfax49',
TRIM(LEADING '0' FROM vorwahl),
replace(telnummer,'-','')
)
FROM crm_adress
jetz will ich hinten noch eine Begrenzung an den Sting hängen, das versuche ich so:
SELECT
concat( 'sfax49',
TRIM(LEADING '0' FROM vorwahl),
replace(telnummer,'-',''),
'#'
)
FROM crm_adress
Ergbit einen SQL Fehler mit dem ich nichts anfangen kann:
SELECT comment
FROM.
WHERE db_name = 'bbcCRM'
AND table_name = ''
AND column_name = '(db_comment)'
MySQL meldet: Dokumentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE db_name = 'bbcCRM'
AND table_name = ''
' at line 3