sql的基本语法

Posted yxcn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql的基本语法相关的知识,希望对你有一定的参考价值。

一. 数据库

1.查询服务器上有哪些数据库

show databases;

2.新建数据库

create database TestSqlSugar;

3.进入数据库

use TestSqlSugar;

4.删除数据库

drop database test;

二. 数据表

1.新建表 

(1) user

create table if not exists user(
    id int auto_increment,
    userName varchar(100) not null,
    userPassword varchar(500) not null,
    age int not null,
    regTime datetime default current_timestamp,
    departmentId int,
    primary key(id)
);

(2) department

create table if not exists department
(
    id int auto_increment,
    name varchar(100) not null,
    admin varchar(100) not null,
    phone varchar(15) not null,
    primary key(id)
);

2.表查询

select * from user
select * from department
### 包含条件查询
select * from user where id in (1);
### 分页limit temp1,temp2  调过temp1条temp2条数据
select * from user limit 1,2
### 双表左关联查询,表的重命名
select user.id as Id, user.departmentId as depId, user.userName as name from user user left join department dep on(user.departmentId = dep.id)

 

以上是关于sql的基本语法的主要内容,如果未能解决你的问题,请参考以下文章

在下面的代码片段中的剩余 ='passthrough' 处的代码中出现语法错误

SQL记录-PLSQL基本语法与数据类型

数据库sqlite3的使用-基本语法

SQL语句基本语法

sql sql里面的代码片段

PL/SQL学习笔记之基本块格式与语法