Home  >  Article  >  Database  >  Get full combination with SQL

Get full combination with SQL

大家讲道理
大家讲道理Original
2016-11-10 11:45:041064browse

create table users (name char(2),value char(1),id number);
insert into users values('甲','a',1);
insert into users values('乙','b',2);
insert into users values('丙','c',3);
insert into users values('丁','d',4);
commit;

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:SQL*Plus common commandsNext article:SQL*Plus common commands