testblob.sql

来自「初学者 在mysql数据库中保存一张图片的方法 使用jsp+mysql h」· SQL 代码 · 共 5 行

SQL
5
字号
drop database if exists testblob;
create database testblob;
use testblob;
drop table if exists test;
create table test(id varchar(2)   primary key, pic  longblob);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?