.htaccess文件 Editor 是一个免费的在线工具,它能够为你的网站快速生成一个 .htaccess 文件。使用非常简单,在页面左侧选择类别,再按照提示在右侧输入相关信息。最后把生成的代码以“.htaccess”的文件名保存在网站根目录下即可。
什么是.htaccess文件,可以访问本站的.htaccess文件详解获得学习内容

.htaccess在线编辑器地址:http://www.htaccesseditor.com/sc.shtml
.htaccess文件 Editor 是一个免费的在线工具,它能够为你的网站快速生成一个 .htaccess 文件。使用非常简单,在页面左侧选择类别,再按照提示在右侧输入相关信息。最后把生成的代码以“.htaccess”的文件名保存在网站根目录下即可。
什么是.htaccess文件,可以访问本站的.htaccess文件详解获得学习内容

.htaccess在线编辑器地址:http://www.htaccesseditor.com/sc.shtml
越简单的东西越容易忘记,一个mysql修改密码的语句到现在都没记住,sql语句的一些基本用法也一样,这次特别找来作为备忘~
增加字段
alter table docdsp add dspcode char(200)
删除字段
ALTER TABLE table_NAME DROP COLUMN column_NAME
修改字段类型
ALTER TABLE table_name ALTER COLUMN column_name new_data_type
改名
sp_rename
更改当前数据库中用户创建对象(如表、列或用户定义数据类型)的名称。
语法
sp_rename [ @objname = ] ‘object_name’ ,
[ @newname = ] ‘new_name’
[ , [ @objtype = ] ‘object_type’ ]
–假设要处理的表名为: tb
–判断要添加列的表中是否有主键
if exists(select 1 from sysobjects where parent_obj=object_id(‘tb’) and xtype=’PK’)
begin
print ‘表中已经有主键,列只能做为普通列添加’
–添加int类型的列,默认值为0
alter table tb add 列名 int default 0
end
else
begin
print ‘表中无主键,添加主键列’
–添加int类型的列,默认值为0
alter table tb add 列名 int primary key default 0
end
/**************************************************************************************/
判断table1中是否存在name字段
if exists(select * from syscolumns where id=object_id(‘table1′) and name=’name’) begin
select * from people;
end
Leave a Reply