推荐
专栏
教程
课程
飞鹅
本次共找到2924条
mysql if语句
相关的信息
御弟哥哥
•
4年前
mysql表和字段的操作
(3)mysql表和字段的操作(3)mysql表和字段的操作创建表createtablename(idint,studentvarchar(20));查看表结构常用describe表名;修改表名老表rename新表ALTERTABLEtb\_men
Aidan075
•
4年前
SQL笔试 I 经典44题及答案解析~
↑关注星标 有趣的不像个技术号每晚九点,我们准时相约 今天这篇文章,是关于44道经典SQL测试题:01建表语句createtableStudent(sidvarchar(10),snamevarchar(10),sagedatetime,ssexnvarchar(10));insertintoStude
Wesley13
•
3年前
MySQL学习【第三篇用户管理】
一.用户管理1.给mysql用户设密码以及删除用户1.给mysql的root用户设置密码root@db02scriptsmysqladminurootppassword'123'2.连接mysqlroot@db01~mysqluroo
Wesley13
•
3年前
mysql的一些操作命令
1、查看mysql数据库SHOWDATABASES;(;号一定要加)2、创建root用户密码mysqladminurootpassword"new\_password"3、检查mysql服务器是否启动psef|grepmysqld4、添加用户方法:GR
Wesley13
•
3年前
VirturalBox中搭建CentOS开发环境实录(二)
安装MySQL_Yum__安装:_官方安装步骤:http://dev.mysql.com/doc/refman/5.7/en/linuxinstallationyumrepo.html(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fdev.
Stella981
•
3年前
Linux Bash Shell编程(八):条件判断与示例
LinuxBashShell编程(八):条件判断语句与示例 上一节(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fblog.csdn.net%2FZheng__Huang%2Farticle%2Fdetail
Wesley13
•
3年前
MySQL报错解决方案:2013
MySQL报错解决方案:2013LostconnectiontoMySQLserver参考文章:(1)MySQL报错解决方案:2013LostconnectiontoMySQLserver(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fwww.cod
Wesley13
•
3年前
19个JS超有用的简写技巧
1.三元操作符当想写if...else语句时,使用三元操作符来代替。const x 20;let answer;if (x 10) { answer 'is greater';} else { answer 'is lesser';} 简写:constanswerx10?
Wesley13
•
3年前
mysql10.3修改默认存储路径
版本为10.3的用该种方式修改:创建/data/mysql目录mkdirp/data/mysql给这个目录至少要附加读写权限chmod777/data/mysqlr把mariadb服务停掉systemctlstopmariadb把/v
Wesley13
•
3年前
mysql中int、bigint、smallint 和 tinyint的区别与长度
通过创建一张表,来看看mysql中intbigintsmallint和tinyint的区别与长度1、在mysql命令行创建如下表CREATETABLEtest_int_1(int_idintNOTNULL,bigint_idbigintDEFAULTNULL,
1
•••
66
67
68
•••
293