常用的sql语句如下,应对工作足以 1.查询指定字段 select c_id,c_age,c_name from t_student; select c_id as 编号,c_name as 姓名,c_age 性别 from t_student; 2.去重查询 select distinct c_address from t_student select distinct c_address,c_name from t_student 3.比较运算符查询 select c_name,c_gend…