Split value from one field to two

前端 未结 14 2132
面向向阳花
面向向阳花 2020-11-22 03:49

I\'ve got a table field membername which contains both the last name and the first name of users. Is it possible to split those into 2 fields memberfirst<

14条回答
  •  无人及你
    2020-11-22 04:13

    The only case where you may want such a function is an UPDATE query which will alter your table to store Firstname and Lastname into separate fields.

    Database design must follow certain rules, and Database Normalization is among most important ones

提交回复
热议问题