当前位置:网站首页>[MySQL] database knowledge record
[MySQL] database knowledge record
2022-07-05 07:30:00 【MatchaApril】
data type
see :https://www.runoob.com/mysql/mysql-data-types.html
Create a table of sql sentence
create table option_table
(
id bigint auto_increment comment 'id',
q_id bigint not null comment ' Subject id',
option_des VARCHAR(5000) not null comment ' Option to describe ( The radio 、 multi-select 、 Judge -> Option to describe ; Fill in the blanks 、 Calculation -> answer )',
is_true tinyint comment ' Is this option correct ( The radio 、 multi-select 、 Judge ->0/1; Fill in the blanks 、 Calculation -> empty )',
order tinyint comment ' The order of the options (1、2、3、4、5...)',
create_time datetime not null default current_timestamp comment ' Creation time ',
update_time datetime not null default current_timestamp on update current_timestamp comment ' Update time ',
create_user VARCHAR(100) not null comment ' founder ',
update_user VARCHAR(100) not null comment ' Updated by ',
is_delete tinyint not null default 0 comment ' Is it deleted 0: Not delete ;1: Be deleted ',
constraint option_table_pk
primary key (id)
) comment ' List of options ';
边栏推荐
- golang定时器使用踩的坑:定时器每天执行一次
- [software testing] 06 -- basic process of software testing
- Idea push project to code cloud
- [vscode] prohibit the pylance plug-in from automatically adding import
- 氢氧化钠是什么?
- When jupyter notebook is encountered, erroe appears in the name and is not output after running, but an empty line of code is added downward, and [] is empty
- Simple operation with independent keys (hey, a little fancy) (keil5)
- Play with grpc - go deep into concepts and principles
- 第 2 章:小试牛刀,实现一个简单的Bean容器
- Anaconda pyhton multi version switching
猜你喜欢

What if the DataGrid cannot see the table after connecting to the database

Light up the running light, rough notes for beginners (1)

Today, share the wonderful and beautiful theme of idea + website address
![[vscode] prohibit the pylance plug-in from automatically adding import](/img/a7/d96c0c4739ff68356c15bafbbb1328.jpg)
[vscode] prohibit the pylance plug-in from automatically adding import

【idea】Could not autowire. No beans of xxx type found

611. Number of effective triangles

目标检测系列——Faster R-CNN原理详解

Negative number storage and type conversion in programs

Graduation thesis project local deployment practice
![When jupyter notebook is encountered, erroe appears in the name and is not output after running, but an empty line of code is added downward, and [] is empty](/img/fe/fb6df31c78551d8908ba7964c16180.jpg)
When jupyter notebook is encountered, erroe appears in the name and is not output after running, but an empty line of code is added downward, and [] is empty
随机推荐
I can't stand the common annotations of idea anymore
Mathematical analysis_ Notes_ Chapter 8: multiple integral
玩转gRPC—深入概念与原理
(tool use) how to make the system automatically match and associate to database fields by importing MySQL from idea and writing SQL statements
PostMessage communication
QT small case "addition calculator"
Simple use of timeunit
I 用c l 栈与队列的相互实现
Selenium element positioning
Qu'est - ce que l'hydroxyde de sodium?
UE5热更新-远端服务器自动下载和版本检测(SimpleHotUpdate)
Line test -- data analysis -- FB -- teacher Gao Zhao
Graduation thesis project local deployment practice
Chapter 2: try to implement a simple bean container
DelayQueue延迟队列的使用和场景
Concurrent programming - deadlock troubleshooting and handling
I implement queue with C I
Import CV2 prompt importerror: libgl so. 1: Cannot open shared object file: no such file or directory
(top) pretty girl binary color code portal
第 2 章:小试牛刀,实现一个简单的Bean容器