摘要:
HTML的定义:HTML是一门编程语言的名字:超文本标记语言(Hyper Text Mark-up Language ),就是超越了文字的范畴,除了文字还可以有图片、视频、音频、动画、特效、表格、链接等其它内容,由标记(<>)组成的一门计算机编程语言。 HTML的结构包括头部 (Head)、主体 ( 阅读全文
摘要:
use data02161212 create table student (Sno nvarchar(3) primary key, Sname nvarchar(8) not null, Ssex nvarchar(2) not null, Sbirthday datetime, Class n 阅读全文
摘要:
表连接分为横向表连接和纵向表连接 横向表连接有三种方式: 1、select 列名,列名 from 表名,表名 where 表名.列名=表名.列名 select student.Sno,sname,cno,degree from Student,Score where Student.Sno = Sc 阅读全文
摘要:
1、聚合函数:MAX()最大值,MIN()最小值,COUNT()计数,AVG()平均值,SUM()求和 2.数学函数: ceiling()--取上限,select ceiling(oil) 油耗上限 from car floor()--取下限,select FLOOR(oil) from car r 阅读全文