游戏王光暗卡组:查询的SQL语句 是什么

来源:百度文库 编辑:高校问答 时间:2024/05/05 01:37:54

举个例子:
select a,b,c(查询所有字段的话就用*) from table1 where a=0 and b=1;

★★★★★
来这里提问的人都想看到诚实可信的回答,请不要为了分数就信口开河,胡言乱语!我只回答我知道的问题!
★★★★★

select 字段列表 from 表名

select from

select [字段列表] from [表名] where [条件] {order by [字段] <desc>|<Ase> group by [字段]

select [all | distinct] 字段列表
form 表名
where 条件 \\ 条件 如“ 字段名 关系运算符 值”
“all 表示所有的字段包括重复字段,distinct 表示不包括重复字段”