MySQL, Concatenate two columns

后端 未结 4 1426
醉酒成梦
醉酒成梦 2020-11-28 08:44

There are two columns in a MySQL table: SUBJECT and YEAR.

I want to generate an alphanumeric unique number which holds the concatenated da

4条回答
  •  天命终不由人
    2020-11-28 09:03

    $crud->set_relation('id','students','{first_name} {last_name}');
    $crud->display_as('student_id','Students Name');
    

提交回复
热议问题