2016年3月13日

查询语句

摘要: 1.普通查询select * from Info #查询所有内容 select Code,Name from Info #查询某几列 2.条件查询select * from Info where Nation = 'n001' #条件查询 select * from Info where Natio 阅读全文

posted @ 2016-03-13 10:39 一方通行o 阅读(128) 评论(0) 推荐(0)

T-SQL 增删改查操作

摘要: T-SQL 1.创建表 create table Car( Code varchar(50) primary key , Name varchar(50) not null, Time date , Price float , Brand varchar(50) references Brand(C 阅读全文

posted @ 2016-03-13 10:36 一方通行o 阅读(327) 评论(0) 推荐(0)

导航