数据库的基本操作——sql语言

  • 创建表
    `
    create table tableName(
    rid int primary key,
    username varchar(20),
    pass varchar(30)
  • 基本的增删改查
-- insert into userinfo(rid,pass,username) values(2,'123','tom');
-- update userinfo set pass='666' where rid=2;
--delete from userinfo where rid=2;
--select * from userinfo;
--drop table userinfo;
  • 中文描述
  • 创建一个表(table):create table 表名(列名1 类型(长度) primary key,
    列名2 类型(长度),
    列名3 类型(长度))
    增加内容:insert into 表名(列名1,列名2,列名3)values(列表1内容,列表1内容,列表1内容)
    删除内容:delete 表名 where 列表1/列表2/列表3=列表1内容/列表2内容/列表3内容
    改变内容:update 表名 set 列表2/列表3=内容 where 列表1/列表3/列表2=原来内容
    查看内容:select*from 表名
    删除该表:drop table 表名
  • 数据库的操作
 show databases;

 create database ltwdb;

 use ltwdb;

  show tables;
 create table userinfo(
 id int auto_increment primary key,
 name varchar(20),
 pwd varchar(20));

select * from userinfo;

desc userinfo;

insert into userinfo(name,pwd) values("ltw","123");

update userinfo set name="gg" where id=2;

delete from userinfo where id=2;
  • 更加详细的,请听下次分解。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值