1、向表T1中插入表T2中的几个字段:
insert into t1 (t1.c1,…,t1.c5) select t2.c1,…,t2.c5 from t2;
2.MySQL中的时间函数:
curdate() 2017-04-13
now() 2017-04-13 09:09:09
3.替换:
update 表的名称 set 此表要替换的字段名=REPLACE(此表要替换的字段名, ‘原来内容‘, ‘新内容‘)
4.截取字符串:
SUBSTR(字段名称,第n位开始截取,截取m位)
5.删除:
删除表中记录:delete from table tablename where 条件……;
删除表:drop table tablename;
6.定位:
LOCATE(字符串,字段名) -- 定位该字符串在数据中的位置;
7.查找表1、表2中字段1相同,字段2不同的数据;
SELECT t1.* FROM person_lnfo t1 JOIN person_lnfo t2 ON t1.houseid=t2.houseid AND t1.unitid<>t2.unitid;
时间: 2024-11-02 21:03:57