DQL 数据库查询语言语法

1.1.1 DQL数据库查询语言语法 1.1 简单查询 #查询全部商品 select * from product; #查询商品名和商品价格 select pname ,price from product; #别名查询。使用的关键字是as(as是能够省略的)。表别名 select * from product as p; #别名查询。使用的关键字as (as能够省略).列别名; select
相关文章
相关标签/搜索