共计 869 个字符,预计需要花费 3 分钟才能阅读完成。
自动写代码机器人,免费开通
本篇内容主要讲解“最常用 mysql 的使用方法”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让丸趣 TV 小编来带大家学习“最常用 mysql 的使用方法”吧!
1、在 shell 下使用 mysql,按照下面的方法。
$mysql -u
-p
password:
mysql show databases; // 显示有哪些数据库
mysql create DATABASE lll; // 创建一个名为 lll 的数据库
mysql use lll; // 使用名为 lll 的数据库
mysql show tables; // 显示当前数据库中有哪些表
mysql CREATE TABLE user (username TEXT not null , userpassword TEXT not null) // 创建一个表
mysql ALTER TABLE user ADD email TEXT not null; // 当前表增加一个字段
mysql ALTER TABLE test DROP come; // 当前表丢弃一个字段
mysql ALTER TABLE test CHANGE pass pass LONGTEXT not null; // 更改当前表中的一个字段
mysql DROP TABLE user;// 丢弃当前数据库中的一个表。
2、php3 代码实现数据库的创建;
$dbc=mysql_connect(localhost , youruser , yourpassword
mysql_create_db(zzz); // 创建一个名为 zzz 的数据库
echo 成功
?
3、使用 php3 创建一个表:
$dbc=mysql_connect(localhost , root ,
mysql_select_db(zzz ,$dbc);
mysql_query(CREATE TABLE user (username TEXT not null , userpassword TEXT not null)
到此,相信大家对“最常用 mysql 的使用方法”有了更深的了解,不妨来实际操作一番吧!这里是丸趣 TV 网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
向 AI 问一下细节