博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sqlserver 大杂烩
阅读量:6417 次
发布时间:2019-06-23

本文共 570 字,大约阅读时间需要 1 分钟。

Sql语句:

查询:select * from student where studentID=‘5’ 

增加:insert into student (name,age,class) values(rows,20,软件工程)

删除:delete from student where studentID=5

修改:update student set class=网络工程 where studentID=5

 

存储过程:

create procedure goods_info as

  select * from googs g inner  jion googs_class gc on g.name=gc.name.

 

连接:

inner outer join(内连接)   :  结果集合中包含符合条件的行  。

left outer join (左外连接) :结果集合中不仅包含符合条件的行,还包含左表中的不满足条件的数据行。null

right outer join(右外连接) :  结果集合中不仅包含符合条件的行,还包含右表中的不满足条件的数据行。  null

right outer join (全外连接):  结果集合中不仅包含符合条件的行,还包含2个中的不满足条件的数据行。null

 

不满足条件的行,列值为null。

转载地址:http://pvpra.baihongyu.com/

你可能感兴趣的文章
centos 6.5 x86_64 justniffer安装
查看>>
Python2.7.5安装pip9.0.1
查看>>
logstash mutate split日志切分
查看>>
linux升级内核,出现:mount:could not find filesystem‘/dev/root’的解决方法
查看>>
Nginx + Node.js + Java 的软件栈部署实践
查看>>
sed 扩展
查看>>
my-innodb-heavy-4G.cnf配置文件注解
查看>>
asp.net core mvc实现伪静态功能
查看>>
IE打开报错,提示该内存不能为read的解决办法!
查看>>
scanf()函数中*的用法
查看>>
WordPress用户角色与用户能力/权限
查看>>
冒泡事件
查看>>
linux防火墙iptables常用规则(屏蔽IP地址、禁用ping、协议设置、NAT与转发、负载平衡、自定义链)...
查看>>
project server 2007插件无法下载安装等问题的解决
查看>>
一条sql语句统计所有表的行数
查看>>
mysql binlog日志自动清理及手动删除
查看>>
Script:列出本会话的细节信息
查看>>
openwrt的button机制
查看>>
tomcat 并发连接数+增大线程池
查看>>
LINUX命令报错
查看>>