摘要:
1.in的用法 使用场景:做条件查询的时候,条件字段的取值有多个的情况 select * from student_info where id = 1 or id =4; # 此处字段id取值存在多个情况,可以使用in方法 select * from student_info where id in 阅读全文
摘要:
使用Navicat客户端,sql语法去创建一个数据库 1.创建表语句 create table student1( id int primary key, name varchar(10), age int, height float, hobby char(10), address varchar 阅读全文