摘要:
mysql SELECT VERSION(), CURRENT_DATE, now();select user(); create database pets;show databases; use pets; CREATE TABLE cats( id INT unsigned NOT NULL 阅读全文
摘要:
Mybatis动态sql用于根据不同条件拼接sql语句. if 动态 SQL 通常是有条件地包含 where 子句,如: <select id="findActiveBlogWithTitleLike" resultType="Blog"> SELECT * FROM BLOG WHERE stat 阅读全文