mysql - How to add a word to a row in crystal Report in C# -
i doing application in have print data using crystal report,
data using mysql.
in database, have field shows numbers of months this:
table
user------- prevision
test------- 3 months
so, in database column prevision shows number of months , need add months field in crystal report... ps: don't want add "months" in database show in crystal report. can in datagrid in crystal report didn't make it. thank you.
just add concatenation in sql query, return '3 months' instead of '3'
something this
select prevision + ' months ' test your_table_name
Comments
Post a Comment