请教一些课程的英文名,学工科的朋友进

请教一些课程的英文名,学工科的朋友进,第1张

1、计算机语言与程序设计基础(C) computer language, basic C

2、电路 circuit

3、电力电子技术 electrical energy, electronics technology

4、电机与控制元件 electric motor, control components

5、自动控制原理 automation theory

6、数字电子技术 mathematical electronics technology

7、模拟电子技术 simulated electronics technology

8、机械设计基础 mechanical design basic

9、数据库技术与应用 statistical technology &application

10、多媒体技术与应用 multi-media technology &application

11、计算机软件技术基础 computer software basic technology

12、信号与线性系统 signal &circuit system

不是 100% 正确 , 不打包票

数据库技术

[词典]data base technique 缩写为 DBT

[例句]简要介绍了融合现代数据库技术的综合测试系统软件的设计思想和方法。

A new method of software design for multi-test system based on data-base technology is introduced.

use student

go

select count(*) as 学生总数

from 学生

use:使用

student:一个叫做student的数据库

use student:把student这个数据库设置为当前运用的数据库!

go:开始,可有可无

select count(*) as 学生总数

from 学生

在学生表中查询学生人数一共有多少?为了程序可读性,所以又下意识的取了一个别名,叫做学生总数!

count:英文中意思是计算

但是在sqlserver中为:统计

count(*)统计所有的

不过有一点要注意:如果与group by连用,那么count(*)只是对分组的一个结果来统计!


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9887503.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-03
下一篇 2023-05-03

发表评论

登录后才能评论

评论列表(0条)

保存