bailing80

数据库连接时遇到的问题 :

https://www.cnblogs.com/xyzdw/archive/2011/08/11/2135227.html
ping +ip地址;

查看本机ip:ipconfig

连接数据库的步骤
sqlplus /nolog

conn /as sysdba

创建用户
create user bl indentified by bl123;

授权
grant dba to bl;

连接自己的数据库
conn bl/bl123(用户和密码);

创建表
create table userinfo(username varchar2(20),userpass varchar2());

创建行
insert into userinfo(username,userpass)values(\'tom\',\'123\');

提交
commit;

查看表结构
select * from userinfo;

分类:

技术点:

相关文章:

  • 2022-01-19
  • 2022-02-07
  • 2021-11-28
  • 2022-01-08
  • 2022-12-23
  • 2021-09-12
  • 2021-11-17
  • 2022-12-23
猜你喜欢
  • 2022-02-07
  • 2021-08-21
  • 2021-08-12
  • 2022-12-23
  • 2022-12-23
  • 2021-12-25
相关资源
相似解决方案