//创建数据库
create database testdata;

//切换数据库
use testdata;

//创建表
create table table1(id int,name varchar(10));

//插入值
insert table1(id,name) values(1,"xiaoming");

 

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-10-01
  • 2022-01-07
  • 2021-12-19
  • 2021-09-25
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-02
  • 2021-08-04
  • 2021-08-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案