摘要:
select * from test1 a,test2 b where a.no=b.no;;内连接 select * from test1 a left join test2 b on a.id=b.id;左外连接 select * from test1 a right join test2 b 阅读全文
摘要:
查看某个变量的值:show variables like 'autocommit'; 设置变量值: set @@autocommit=0;(取消自动提交事务); sql命令为:begin->insert into table_name values(1,1);->rollback;->select 阅读全文
摘要:
/^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(.[a-zA-Z0-9_-])+/ - 匹配邮箱 阅读全文
摘要:
昨天去58面试,之前的java基础和数据结构算法之类的都还可以,最后一项数据库面试官直接给我打了0分,对我打击很大,从android转javaweb,的确数据库不了解,现在打算从头开始学习数据库,特此纪念一下 更多详细可以参考http://blog.csdn.net/jintao_ma/articl 阅读全文