西部数码主机 | 阿里云主机| 虚拟主机 | 服务器 | 返回乐道官网
当前位置: 主页 > 开发教程 > mysql教程 >

exists在myql几个使用的地方介绍

时间:2015-04-18 17:26来源:未知 作者:好模板 点击:
exists在mysq中用到的地方。 1.创建数据表的时候 drop table if exists tablename 如果存在某表 就删除掉,如果想达到存在就不在创建该表的效果可以用 create table if not exists tablename(); 2.创建数据

exists在mysq中用到的地方。

1.创建数据表的时候

drop table if exists  tablename

如果存在某表 就删除掉,如果想达到存在就不在创建该表的效果可以用

create table  if not exists  tablename();

2.创建数据库的时候

drop database if exists db_name

存在就删除db_name 数据库

create database if not exists db_name

不存在db_name 数据库的时候 则创建。

3.用户 exists 和 not exists 型子查询

例如:

SELECT column1 FROM t1 WHERE EXISTS (SELECT * FROM t2);
(责任编辑:好模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------
栏目列表
热点内容