简体   繁体   中英

Codeigniter : How to move value from table in database?

这是表

How to move the value from tes_waktu_selesai where tes_alat = 02.01.1 to tes_waktu_mulai where tes_alat = 02.01.2?

Thanks in advance

try this

UPDATE table_name t1 SET t1.tes_waktu_mulai = t1.tes_waktu_selesai WHERE t1.tes_alat = '02.01.1';

If you need to interchange the values between these two let me know

you can use the below

   INSERT INTO <totable> SELECT * FROM <from table>

http://phptipsntricks.com/sync-between-two-tables/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM