当前位置:网站首页>MySQL basic commands
MySQL basic commands
2022-07-24 16:32:00 【Tool man of konjaku】
net start mysql -> Start the service
net stop mysql
mysql -u root -p -> Log in locally
create DATABASE DEMO; -> Create database
drop database DEMO; -> Delete database
use demo; -> Select database
create table demo_tbl(demo_id INT, demo_title VARCHAR(3));
-> Create data table
show tables -> Displays the tables of the database

insert into demo_tbl
(demo_id,demo_title) value (xxx,xxx);
-> Insert datasheet data
select * from demo_tbl; -> Query data * Represent all , You can also use attributes

Be careful :mysql Commands are not case sensitive
边栏推荐
- Envi grid resampling
- [Nanjing Agricultural University] information sharing of postgraduate entrance examination and re examination
- 2019q1 global smartphone shipments: Huawei vivo increased significantly, while Apple plummeted 30.2%!
- 如何防止跨站点脚本 (XSS) 攻击完整指南
- 剑指 Offer 48. 最长不含重复字符的子字符串
- 1184. Distance between bus stops
- Princeton calculus reader 02 Chapter 1 -- composition of functions, odd and even functions, function images
- Qt键盘事件(二)——长按按键反复触发event事件问题解决
- 剑指 Offer 22. 链表中倒数第k个节点
- EventLoop event loop mechanism
猜你喜欢

如何防止跨站点脚本 (XSS) 攻击完整指南

期盼已久全平台支持-开源IM项目OpenIM之uniapp更新

Win10 download address

Mcd12q1 data shows multiple classifications in envi

Duplicate content in lookup table

Using native JS to realize magnifying glass function

ArcGIS create vector
[email protected]"/>ZBar project introduction and installation configuration| [email protected]

【南京农业大学】考研初试复试资料分享

我们为什么要推出Getaverse?
随机推荐
How to prevent XSS in PHP
Jupyter uses tips
【技术】uniapp之聊天室 demo
ArcGIS pixel size changed from 0.00025 to meters
“天上天下,唯我独尊”——单例模式
Solution to deepin taskbar disappearance
hping3安装使用
QT keyboard event (II) -- long press the key to trigger the event event repeatedly, and the problem is solved
Ligerui table control grid changes the color of rows (cells) according to the content
PS pull out logo
Codeforces round 690 (Div. 3) B. last year's substring conventional solution
Mobile phone comparison redmi note8 and realm x2
Telephone system rules
Druid integration shardingsphere appears xxmapper Reasons and solutions of XML error reporting
Rest style
Picture browser? QT can also be achieved!
regular expression
Matlab writes excel string and number merging
双指针滑动窗口法解析及LeetCode相关题解
Leetcode:162. looking for peak [two points looking for peak]