如何确定 H 引线中的哪一根是 H1 引线,或者 X 引线中的哪一根是 X1 引线?如果我们给 H 绕组通电,就会在 X 绕组中感应出电压。如果我们将 H 和 X 绕组连接在一起,就可以读取两个绕组组合的电压。将施加电压的 H 绕组与感应电压的 …
基础语法
查询
全表查询
select * from student选择查询
select name,age from student别名
select name as 学生姓名,age as 学生年龄 from student常量和运算
select name,score,score*2 as double_score from student条件查询–where
select name,score from student…