标签:dex init rom column hello 截取 sel 空格 name
conn scott/tiger -- 登录Scott用户
select * from tab -- 查询该数据库(用户)下的表
desc tb1 -- 查询表结构【只能在command下执行,否则报错】
消除重复列【重复列指的是该行的查询出的数据都一样】
select lower('hello') as name from dual;
select * from bm_user where name=upper(#name) --Mybatis
SQL> select initcap('hello') as name from dual;
NAME
-----
Hello
SQL> select length('hello') as name from dual;
NAME
----------
5
select * from bm_user where length(name) = 5;
SQL> select replace('hello world!','llo','LLO') as name from dual;
NAME
------------
heLLO world!
消除空格
SQL> select substr('hello world!',7) as name from dual;
NAME
------
world!
以前开发的时候用得比较多的是mysql和sql server,oracle用的比较少,用起来比较生疏,mysql和sql server用起来比较类似.
就oracle的使用方式和他们不同,oracle在创建数据库的时候要对应一个用户,数据库和用户一般一一对应,mysql和sql server 直接通过create databse “数据库名” 就可以直接创建数据库了,而oracle创建一个数据库需要以下三个步骤:
标签:dex init rom column hello 截取 sel 空格 name
原文地址:https://www.cnblogs.com/zhuxiang1633/p/11773719.html