createtable student (id int, name varchar(20), age int, sex varchar(5),address varchar(100),math int,english int);insertinto student
(id,name,age,sex,address,math,english)values(1,'马云',55,'男','杭州',66,78),(2,'马化腾',45,'女','深圳',98,87),(3,'马景涛',55,'男','香港',56,77),(4,'柳岩',20,'女','湖南',76,65),(5,'柳青',20,'男','湖南',86,NULL),(6,'刘德华',57,'男','香港',99,99),(7,'玛德',22,'女','香港',99,99),(8,'德玛西亚',18,'男','南京',56,65);
where子语句
运算符
> < <= >= <>
//查询年龄大于20岁的行信息select*from student where age >20;//查询年龄小于20岁的行信息select*from student where age <20;//查询年龄等于20岁的行信息select*from student where age =20;//查询年龄小于等于20岁的行信息select*from student where age <=20;//查询年龄大于等于20岁的行信息select*from student where age >=20;//查询年龄不等于20岁的行信息select*from student where age <>20;
BETWEEN…AND
//查询年龄大于等于20并且小于等于30的行信息select*from student where age between20and30;
and 或 &&
//查询年龄大于等于20并且小于等于30的行信息select*from student where age >=20and age <=30;
IN(集合)
//查询年龄22岁 18岁 20岁的行信息select*from student where age in(22,18,20);
or 或 ||
//查询年龄22岁 18岁 20岁的行信息select*from student where age =22or age =18or age =20;
IS NULL
//查询英语弃考的select*from student where english isnull;
not 或 !
//查询英语没有弃考的select*from student where english isnotnull;
GeoChat : Grounded Large Vision-Language Model for Remote Sensing 一、引言 GeoChat,将多模态指令调整扩展到遥感领域以训练多任务会话助理。
遥感领域缺乏多模式指令调整对话数据集。受到最近指令调优工作的启发,GeoChat 使用 Vicuna-v1.5和自动化…