I do not understand why this did not work:
select id,name,concat(substring(description,0,30),'...') as desc_shortened, created_date,added_by from products
Even if there is data inside the description field. I have not seen any example fields in mySQL documentation. They used blank rows instead of column names.
concat(susbtring(description,0,30)) returns only ... and thatβs it.
Tarik source share