摘要: -- 创建存储过程 -- DELIMITER // CREATE PROCEDURE pro_first() BEGIN select NOW(); END -- // -- DELIMITER ; -- 删除存储过程 DROP PROCEDURE pro_first; -- 查看指定存储过程 SH 阅读全文
posted @ 2020-01-09 22:43 谢世林 阅读(195) 评论(0) 推荐(0)
摘要: select count(*) from extend_mobile select * from extend_mobile em where em.city='北京'; select * from extend_mobile em where em.provice='江苏'; -- 组合查询 se 阅读全文
posted @ 2020-01-09 13:50 谢世林 阅读(213) 评论(0) 推荐(0)