sql.txt

来自「基于xml的数据库管理系统」· 文本 代码 · 共 21 行

TXT
21
字号
createtable t1  
(
  c1,c2
);


insert into t1 ("v1","v2");


delete from t1 where c1="v1" and c2="v2"; 


update t1 set c1="v3"  
where c2="v2";


select c1,c2 from t1 where c1="v1" and c2="v2";



⌨️ 快捷键说明

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