摘要:
--select...from...where... 查询--insert into...values() 插入--update...set... 改--delete from...where... 删--drop table ..删除表--top 查询前几行。跟在select后面--di... 阅读全文
摘要:
create table Student(Sno char(3) primary key,Sname char(8) not null,Ssex char(2) not null,Sbirthday datetime,Class char(5));create table Course(Cno va... 阅读全文
摘要:
--sql server 与 oracle的区别 --DBMS 数据库管理系统--1.数据类型不同。 --sql server 的数据类型:int ,smallint ,char,varchar,nchar,nvarchar,ntext,datetime,smalldatetime,money,... 阅读全文