直接在新的mysql里面导入就行了
import是导入
也可以直接将原来的数据库目录剪切到新的数据库目录下面.数据库目录是
在你的网站目录下的mysql目录下的data目录下
使用insert语句插入条目。INSERT INTO table_name VALUES (值1, 值2,....)
或指定列名
INSERT INTO table_name (列1, 列2,...) VALUES (值1, 值2,....)
update table set field=concat(' ', field, '072110003') where field='072110001'应该是
update table set field=concat_ws(' ', field, '072110003') where field='072110001'
或者
update table set field=concat(field, ' ', '072110003') where field='072110001'
对于需要一次添加多个值,并且都用' '隔开的话,用第二条语句比较方便。 一次只用一个的话,concat比较简单而且不同数据库通用。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)