sql.txt

来自「上传文件和图片」· 文本 代码 · 共 19 行

TXT
19
字号
drop table user_def
create table user_def
(
	id int identity,
	photo_name varchar(50),
	photo image	
)
select *from user_def


drop table img_no_def
create table img_no_def
(
   last_no int
)

insert into img_no_def(last_no) values(1)

select *from img_no_def

⌨️ 快捷键说明

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