摘要: 1.字符型数据:char\varchar\text这几种数据类型都是用来装字符串的char 固定长度存储数据varcahr 按变长存储数据text 当你需要存储非常大量的字符串时使用nchar、nvarchar、ntext这几个也是存储字符串的,与上面的对应相同。唯一不同的是这三种类型,是采用Uni 阅读全文
posted @ 2019-05-30 10:13 小小黑- 阅读(18313) 评论(0) 推荐(0) 编辑
摘要: 一、SQL中的语法 1、drop table 表名称 eg: drop table dbo.Sys_Test 2、truncate table 表名称 eg: truncate table dbo.Sys_Test 3、delete from 表名称 where 列名称 = 值 eg: delete 阅读全文
posted @ 2019-05-30 10:02 小小黑- 阅读(214) 评论(0) 推荐(0) 编辑