zoukankan      html  css  js  c++  java
  • mybatis中sql语句总结

    //查询用户列表
    @Select("select * from user")
    public List<User> findAll();

    //根据id查询用户
    @Select("select * from user where uid=#{uid}")
    public User findById(int uid);

    //模糊查询
    @Select("select * from user where username like '%${value}%'")    // '%${value}%'里面必须写value,不然会报错。
    public List<User> search(String condition);
     
    //添加用户
    @Insert("insert into user(username,password,telephone,email,create_time)value(#{username},#{password},#{telephone},#{email},#{create_time}) ")
    public void add(User user);

    //更新用户
    @Update("update user set username=#{username},password=#{password},telephone=#{telephone},email=#{email} where uid=#{uid}")
    public void update(User user);

    //删除用户
    @Delete("delete from user where uid=#{uid}")
    public void delete(int uid);
     
  • 相关阅读:
    python之timeit模块
    python isinstance函数
    继承
    冒泡排序&&选择排序
    监听器
    被钝化的代码
    Ajax验证用户名
    原生ajax访问服务器所展现的现象
    今天
    随机点名
  • 原文地址:https://www.cnblogs.com/w1440199392/p/13906562.html
Copyright © 2011-2022 走看看