-
-
0它石2021年0531班在7月5日开班了,快乐学习开始了,GO,GO,GO!
-
2
-
0·远程电脑需要设置账号和密码 ·win+r-->services.msc-->找到三个远程服务,启动 Remote Desktop Configuration Remote Desktop Services Remote Desktop Services UserModePort Redirector ·win+r-->services.msc-->windowsfirewall(windows防火墙服务),启动 ·开始--控制面板--系统和安全--windows防火墙--启动 ·win+r-->gpedit.msc--找到计算机配置--管理模板--网络--网络连接--windows防火墙--标准配置 文件--Windows 防火墙:允许入站远程例外 ·开始--控制面板--系统和安全--windows防火墙--允许程序通
-
01)永远要先想 “我要干什么”,而不是 “我有什么,所以我要干什么”。 2)永远都要思考,行业里****,我怎么才能像他一样**,或者比他更**。 3)不要给自己设限,从某种角度上你觉得自己行或者不行,都是对的。连想都不敢想的人,不可能做出任何尝试。 4)一流和三流人才的差距是数量级的,所以你永远不要洋洋自得,世界上存在着远比你厉害的高手。但也不要失去希望,如果只需要通过学习、实践,你就能在有生之年实现数量级的进步,想
-
0修改表中的数据 a、修改指定行的数据 update student set name='赵四',id=10010 where id=10000; commit; b、修改某列的数据 update student set sex='女'; commit; c、修改某几行的数据 update student set name='小明' where id=10010 or id=88888; commit; d、将某行数据增加数据 update student set id=id+666 where id=10010; commit; update student set id=id*2 where id=10000; commit; e、将某列数据清空,前提是满足该列的约束,可以为空 update student set sex=null where id=10000; commit;
-
0创建一张表时,通常要有主键列,主键默认有唯一和非空约束 create table 表名( 列名 数据类型 primary key, 列名 数据类型 unique, 列名 数据类型 check(检查约束的条件), 列名 数据类型 not null 或者 null, 列名 数据类型 default 默认值, 列名 数据类型 references 主表名字(被引用的列) ); 例子: create table class( classid number(2) primary key, classname varchar2(20) not null); create table student( ID number(5) primary key, name char(6) not null, sex char(4) check(sex='男' or sex='女'), birthday date no
-
0主键(primary key):默认有唯一和非空属性、通过主键只能找到一条数据 外键(references):外键中的数据来源于另外一张表的主键,主键中没有的数据在外键中不可能存储 唯一(unique):存储数据时不能相同,但是可以为空 非空(not null):存储数据时不能为空,但是可以相同 默认(default):建表时给某列定义了默认值,往数据库中插入数据时如果不给它值,取默认值,给它值就取该值 检查(check):检查数据是否满足建表时定义的检查要求 讲解约束主要是为了在创建表格
-
0--字符类型 char(20):表示存储长度为定长20的字符,如果存储长度不足20位剩余长度使用空格补替,查询效率比varchar2高 varchar2(20):表示存储长度为可变长20的字符,以实际存放字符长度为准,查询效率比char低 varchar(20):用法与varchar2相同 --数字类型 number(5):表示存储长度为5位的数字,取值范围为0~99999 number(5,2):表示存储长度为5位的数字,但是必须要满足2位小数,取值范围为0.00~999.99 --日期类型 sysdate:获取当前系统时间 to_char():将日期类型转换为字符类型
-
0insert into 表名 (列1,列2,……列n) values (值1,值2,……值n); commit; 注意:插入的值需要与列名对应的数据类型要一致 eg: insert into class (classid,classname) values (1,'三班'); commit; insert into class values (2,'四班'); commit; insert into student (id,name,birthday) values (10000,'张三',sysdate); commit; commit:表示将插入的数据提交到数据库中并且保存
-
0
-
0一大波就业喜讯来袭 你们准备好了吗
-
0接到用户举报,经核实吧主 鱼羹不是一种汤 长期未对贴吧进行管理及发言,无法在建设 它石 吧内容上、言论导向上发挥应有的模范带头作用,严重违反吧主协议,故撤销其吧主管理权限。如对此项决议有异议,请至贴吧反馈中心进行申诉,链接 http://tieba.baidu.com/hermes/feedback 百度贴吧管理组
-
0
-
0
-
01.创建用户 create user tashi321 identified by tashi321; 2.查询用户 select * from dba_users; select * from dba_users where username='TASHI321'; select * from dba_users where username='tashi321'; 3.给用户授权 grant connect,resource,dba to tashi321; 4.查询用户的权限 select * from dba_role_privs; select * from dba_role_privs where grantee='TASHI321'; 5.回收权限 revoke dba,resource from tashi321; 6.修改密码 alter user tashi321 identified by abc123; 7.给用户加锁 alter user tashi321 account lock; 8.给用户解锁 alter user tashi321 account un
-
0
-
0
-
0很多它石学生进入华为,华为很多项目使用open suse linux, open suse linux默认不能远程ssh登陆的,设置如下: 1.在桌面中YaST中搜索firew,然后关闭防火墙 2.执行下面四个命令关闭防火墙 /etc/init.d/SuSEfirewall2_init stop /etc/init.d/SuSEfirewall2_setup stop chkconfig --level 345 SuSEfirewall2_init off chkconfig --level 345 SuSEfirewall2_setup off 3.设置ssh的配置文件 vi /etc/ssh/sshd_config 把59行左右的 PasswordAuthentication no改成PasswordAuthentication yes 4.重复sshd服务 service sshd restart
-
0
-
0
-
6最近有不少在学习自动化的同学,下面内容会了吗! Webdriver元素的八大定位在Python语言中对应的写法: find_element_by_id() 通过id属性定位(掌握) find_element_by_name() 通过name属性定位(掌握) find_element_by_class_name() 通过class属性定位(掌握) find_element_by_link_text() 通过文本链接定位 (掌握) find_element_by_partial_link_text() 通过部分文本链接定位(了解) find_element_by_tag_name() 通过标签名字定位(了解) find_element_by_xpath() 通过xpath语法定位
-
1
-
0冒个泡,毕业的同学工作加油,它石加油↖(^ω^)↗
-
2曾经没努力学习的老学员前来捧场~😂😂😂
-
0新人卡,滴滴😏
-
0欢迎新老学员关注它石吧,多多互动,多多技术交流
-
6
-
022018004班,5.9号正式开班,位置有限,提前预约者优先试听1220当你的身边每天出现的都是一群很努力,上进,有激情的人的时候,你也会变得很努力。时间会让你变得更美好。来它石,遇见更美好的自己。001越努力 越幸运 将来的你们一定会感谢现在努力的自己0亲爱的各位吧友:欢迎来到它石