2022年12月6日

Linux常用(实用)命令大全

摘要: pwd 显示工作路径 shutdown -h now 关闭系统 /halt 关闭系统 shutdown -r now 重启 / reboot 重启 systemctl stop firewalld 关闭防火墙 ip addr 查看ip地址 1、cd命令:这是一个非常基本,也是大家经常需要使用的命令, 阅读全文

posted @ 2022-12-06 15:12 糯米白白 阅读(19834) 评论(0) 推荐(1) 编辑

SQLServer 判断表是否存在

摘要: 1、判断数据表是否存在 方法一: use yourdb; go if object_id(N'tablename',N'U') is not null print '存在' else print '不存在' 例如: use fireweb; go if object_id(N'TEMP_TBL',N 阅读全文

posted @ 2022-12-06 10:13 糯米白白 阅读(2050) 评论(0) 推荐(0) 编辑

导航