摘要: # sql 对大小写不敏感 # 查询表中的所有信息 select * from `Customers`; # 查询指定字段 CustomerName,Country select CustomerName,Country from `Customers` # distinct 去重复 select * distinct Country from `Customers` # 客户的国家数量 ... 阅读全文
posted @ 2019-03-15 16:48 疯子FK 阅读(468) 评论(0) 推荐(0) 编辑