-- 如果存在则先删除 drop database if exists jzlg; -- 创建数据库 create database jzlg; -- 使用自己创建的数据库 use jzlg; -- 学生信息表 -- 如果存在则先删除 drop table if exists tb_student; -- 创建新表 create table tb_student( stu_id int primary key auto_increment, stu_name varchar(50) unique, create_date date, gender varchar(2), age int check(age>18 and age<24) )auto_increment=1; -- 查询 select * from tb_student; -- 学生成绩 -- 如果存在则先删除 drop table if exists tb_score; -- 创建新表 create table tb_score( score_id int primary key auto_increment, stu_id int, c decimal(4,2), s decimal(4,2), html decimal(4,2), constraint fk_stu_id foreign key (stu_id) references tb_student(stu_id) )auto_increment=1; -- 查询 select * from tb_score; 在这两张表里面添加数据每个表添加三条数据
时间: 2024-02-27 13:58:39 浏览: 133
以下是向两张表中添加三条数据的 SQL 语句:
向 tb_student 表中添加三条数据:
```
insert into tb_student(stu_name, create_date, gender, age) values('小明', '2002-01-01', '男', 19);
insert into tb_student(stu_name, create_date, gender, age) values('张三', '2003-02-02', '男', 20);
insert into tb_student(stu_name, create_date, gender, age) values('李四', '2004-03-03', '女', 21);
```
向 tb_score 表中添加三条数据:
```
insert into tb_score(stu_id, c, s, html) values(1, 80, 85, 90);
insert into tb_score(stu_id, c, s, html) values(2, 50, 40, 60);
insert into tb_score(stu_id, c, s, html) values(3, 45, 60, 25);
```
注意:在向 tb_score 表中插入数据时,需要保证 tb_student 表中已经存在对应的 stu_id。
相关问题
我应该如何操作spring.datasource.sql.init.schema-locations中执行DROP DATABASE IF EXISTS和CREATE DATABASE IF NOT EXISTS这些语句
如果您需要在`spring.datasource.sql.init.schema-locations`中执行`DROP DATABASE IF EXISTS`和`CREATE DATABASE IF NOT EXISTS`这些语句来创建数据库,可以按照以下步骤操作:
1. 在您的SQL脚本中添加`DROP DATABASE IF EXISTS`和`CREATE DATABASE IF NOT EXISTS`语句,例如:
```sql
DROP DATABASE IF EXISTS `spring_batch`;
CREATE DATABASE IF NOT EXISTS `spring_batch` CHARACTER SET UTF8;
USE `spring_batch`;
```
2. 在application.properties或application.yml中配置数据库访问凭据和权限,例如:
```properties
spring.datasource.url=jdbc:mysql://localhost:3306/?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&useSSL=false
spring.datasource.username=root
spring.datasource.password=123456
```
3. 在application.properties或application.yml中配置`spring.datasource.initialization-mode=always`,以启用SQL初始化脚本的自动执行,例如:
```properties
spring.datasource.initialization-mode=always
```
4. 将包含SQL脚本的文件放置在`src/main/resources`目录下,并在`spring.datasource.sql.init.schema-locations`中指定该文件的路径,例如:
```properties
spring.datasource.sql.init.schema-locations=classpath:db/schema.sql
```
5. 启动应用程序,SQL脚本将在应用程序启动时自动执行,数据库将被创建或更新。
需要注意的是,在实际生产环境中,不建议在SQL脚本中使用`DROP DATABASE IF EXISTS`和`CREATE DATABASE IF NOT EXISTS`语句,因为这可能会导致数据丢失或安全问题。在生产环境中,最好由DBA或系统管理员手动创建和维护数据库。
[SQL] Query bookstore start [ERR] 1046 - No database selected [ERR] -- ---------------------------- -- Table structure for book -- ---------------------------- DROP TABLE IF EXISTS `book` [SQL] Finished unsuccessfully怎么解决
这个错误提示表明你没有选择数据库。在执行 SQL 查询之前,你需要先使用 `USE` 命令选择要查询的数据库,例如:
```
USE bookstore;
```
如果你还没有创建 `bookstore` 数据库,可以使用以下命令创建:
```
CREATE DATABASE bookstore;
```
然后再使用 `USE` 命令选择该数据库。如果你已经创建了数据库,但是仍然遇到相同的错误,请检查你的 SQL 查询语句是否正确,并且确保没有其他语法错误。
阅读全文