
sql
1598583
把握今天,成就明天!
展开
-
一些工作和学习中经常用到的SQL语句
一些常用的SQL语句: 新建表: create table [表名] ( [自动编号字段] int IDENTITY (1,1) PRIMARY KEY , [字段1] nVarChar(50) default 默认值 null , [字段2] ntext null , [字段3] datetime, [字段4] money null , [字段5] i原创 2009-04-24 16:13:00 · 758 阅读 · 1 评论 -
MySQL中文编码的问题
对于useUnicode和characterEncoding两个连接属性,下面介绍一点点:useUnicodeShould the driver use Unicode character encodings when handling strings? Should only be used when the driver cant determine the char原创 2009-04-28 14:18:00 · 494 阅读 · 0 评论 -
一个左连接查询的例子
项目中遇到的情况,需要查询广告主所有的广告及登录的网站主是否申请的状态,广告与网站主的关系存在fh_ad_webmaster 表中。select a.id id, e.status status, a.name name, a.type type, a.picSize picSize,原创 2009-05-11 09:44:00 · 1605 阅读 · 1 评论 -
创建存储过程及调用存储过程
If exists (select name from sysobjects where name=SP_TBSTRU and xtype=P) Drop procedure dbo.SP_TBSTRUgoCREATE PROCEDURE SP_TBSTRU @Dbname varchar(30) =BHDB,@Tbname varchar(30) =ABANKAS I原创 2009-05-19 12:43:00 · 645 阅读 · 0 评论 -
sql 查询 in里的个数超过1000 实用方法
/** * * @param ids in 语句集合对象 * @param count in 语句中出现的条件个数 * @param field in 语句对应的数据库查询字段 * @return */ private String getOracleSQLIn(List ids, int count, Strin转载 2014-10-16 09:13:28 · 2655 阅读 · 0 评论