I just trying to know is this possible the function of MYSQL GROUP_CONCAT to return this type of data. Here is a scenario
SELECT GROUP_CONCAT(marks) AS `i need only 40 int in this column` FROM marks
when i execute this Query the result will be show like this

Result required 40
40in your query (SELECT 40 FROM marks LIMIT 1), unless you have a reason we could understand.GROUP_CONCATdoes not make any sense withoutGROUP_BY40, a simpleSELECT 40 LIMIT 1will do. Otherwise you need to add a few more details to your question – as it stands it is totally unclear.