发布网友 发布时间:2022-04-26 18:01
共3个回答
热心网友 时间:2022-04-08 07:05
包括数据定义语句、数据操纵语句、数据控制语句、事务控制语句、程序化SQL
热心网友 时间:2022-04-08 08:23
一般操作么,查询:select、插入insert、删除delete、更新update,这些最常用,想知道全面的么,直接百度sql语句大全
热心网友 时间:2022-04-08 09:58
查询语句-select * from table;
select * from table where 条件1=数值 and 条件2=数值;
select * from table where id in (select id from table);两表关联
select a.a,b.b,c.c from table1 a,table2 b,table3 c where a.id1=b.id2;
插入语句-insert into table (字段1,字段2,字段3,……)
values (数值1,数值2,数值3,……);
更新语句-update 表名 set 数值 where=id = 1;
添加列语句-alter table 表名
add (列名1 类型1,列名2 类型2,列名3 类型3,……);
修改列类型-alter table 表名
modify (列名1 类型1,列名2 类型2,列名3 类型3,……);
删除列语句-alter table 表名
drop column 列名;
删除表语句-deltet table 表名;
清空表数据-truncate table 表名;
select * from v$session;-查询数据库进程
select * from v$version;-查询数据库版本