1. 用sql语句 添加一列到指定位置,请指点一二。谢谢
alter table stu add stu_sex varchar(10);
在stu_age后面添加一列
如果一定要添加列到stu_name后面
就要添加stu_sex,
再添加一列temp存放stu_age的数据
然后删除stu_age列
然后把temp改名成stu_age
2. sql关于插入整列的语句
insert into 新表(firstname) select name from table
--------补充--------
你这都是同一个表吧?
update table set firstname=name
用下边这个,才反应过来
3. sql语句给新增加的列插入数据应该怎么写
使用更新语句
update 表名 set 列名=需要插入的数据 [where 索引=索引值]
where为可选,不写的话就更新表中所有的行,写的话就更新你指定的行
例:
update score set sname="张三" where id=1
4. 怎么使用sql语句添加列
alter table 表名 add 列名 数据类型。
5. 如何用sql语句插入空白列
1、select case when ISNUMERIC(字段)=1 then 汉字 else 字段 end from 表名;
2、select 字段,NULL as 空白列 from 表名;
---
以上,希望对你有所帮助。
6. 用SQL语句插入多列,该怎么处理
建议你建立另外一个表,字段为学号、姓名、课程名,选课程时把课程信息与学生信息都插入到这个表中,最后使用交叉查询来实现你的要求!
7. sql怎么在数据库中插入一列数据
sql语句
alter table [tableName] add [columnName] [dataType]
tableName :这个替换为你需要修改的表名
columnName :你需要添加的字段名
dataType:该字段对应的数据类型
8. sql 语句添加列
selectg.GOLFFIELD_CITY,
sum(casewheng.golffield_ball=0then1else0end)高尔夫球,
sum(casewheng.golffield_ball=1then1else0end)羽毛球,
sum(casewheng.golffield_ball=3then1else0end)乒乓球,
sum(casewheng.golffield_ball=5then1else0end)保龄球,
sum(casewheng.golffield_ball=2then1else0end)台球,
sum(casewheng.golffield_ball=4then1else0end)网球,
sum(casewheng.golffield_ball=6then1else0end)篮球,
sum(casewheng.golffield_ball=7then1else0end)足球
fromgolffieldg
whereg.GOLFFIELD_CITYlike'%唐山%'andg.golffield_delflag=0
groupbyg.GOLFFIELD_CITY
--或者
select'唐山'GolfCity,
sum(casewheng.golffield_ball=0then1else0end)高尔夫球,
sum(casewheng.golffield_ball=1then1else0end)羽毛球,
sum(casewheng.golffield_ball=3then1else0end)乒乓球,
sum(casewheng.golffield_ball=5then1else0end)保龄球,
sum(casewheng.golffield_ball=2then1else0end)台球,
sum(casewheng.golffield_ball=4then1else0end)网球,
sum(casewheng.golffield_ball=6then1else0end)篮球,
sum(casewheng.golffield_ball=7then1else0end)足球
fromgolffieldg
whereg.GOLFFIELD_CITYlike'%唐山%'andg.golffield_delflag=0
9. 在数据表中添加一个字段的SQL语句怎么写
数据表中添加一个字段的标准SQL语句写法为:
alter table 表名 add (字段 字段类型) [default '输入默认值'] [null/not null] ;
举例:ALTER TABLE employee ADD spbh varchar(20) NOT NULL Default 0
意思就是在表employee 中加入 字段spbh,该字段的类型是varchar,大小20,并且不允许为空,初始默认值是0。
(9)sql插入列语句扩展阅读:
其他常用sql语句:
1、修改数据表中某项字段属性,为其添加备注。
语句格式:comment on column 库名.表名.字段名 is '输入的备注';
示例: 我要在ers_data库中 test表 document_type字段添加备注,则sql语句为:
comment on column ers_data.test.document_type is '文件类型';
2、修改数据表中某字段类型。
语句格式:alter table 表名 modiy (字段 字段类型 [default '输入默认值'] [null/not null] ,字段 字段类型 [default '输入默认值'][null/not null]); 修改多个字段用逗号隔开。
示例:想要修改一个teacher教师表中字段办公室classroom的类型为char(20),且默认值“办公室”,则对应sql为:
ALTER TABLE teacher ALTERCOLUMNclassroom VARCHAR(20) NOT NULL default "办公室";
3、删除数据表中的某字段。
语句格式:alter table 表名 drop (字段);
示例:删除表student中的字段age,可以用如下sql:
alter table student drop age;
10. sql语句如何自动插入一列或插入多列 急!!
建议你建立另外一个表,字段为学号、姓名、课程名,选课程时把课程信息与学生信息都插入到这个表中,最后使用交叉查询来实现你的要求!