- 1、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
mysql学习心得(MySQL learning experience)
mysql学习心得(MySQL learning experience) MySQL database operations: version 5.1 Installation and uninstall of 1.MySQL: note that the settings font is: utf8 2. start the MySQL service: net, start, MySQL Turn off the MySQL service: net stop MySQL 3. login MySQL server: MySQL, -uroot, -p123 (user name: root, password: 123) Exit: exit Remote connection: MySQL, -h192.168.1.181, -uroot, -p123 Note: the following steps do not follow; 4.show databases looks at the database in MySQL 5. create a database: create database wpj1111; (note the end of a semicolon) DDL: (database definition language) create drop alter for database or table structure DCL: (database control language) grant revoke commit rollback for database permissions, operations, transaction processing DML: (database operating language) insert delete update select for database add, delete, change, check operation 6. using the database: use wpj1111; 7. build table: create, table, EMP (ID, int), Name varchar (20), Age int, Sex char (4), Salary float); Note: char fixed length (provincial space) varchar variable length (slow time) 8. see table structure description: desc emp; 9. insert a statement: insert, into, EMP (ID, name, age, sex, salary), values (1,liuhui, 18,M, 8000); Note: the date format is also quoted in single quotation marks 10. query table data: Select * from emp; 11. modify the data in the table: Update, EMP, set, salary=6666, where, id=1; 12. delete records: Delete from EMP; empty the data in the table Delete from EMP where id=4; deletes a record of ID 4 13. solve Chinese coding: View database status: Status A. find the my.ini file under the MySQL installation directory and find default-character-set=utf8 (to change two places to utf8) B.net, stop, mysql, net, start, MySQL C.set names GBK; (on the client side, modify the encoding mode for GBK) D. a database or table that has been created before modifying the encoding: Alter, database, wpj1111, default, character, set, utf8; Alter, table, EMP, convert, to,
您可能关注的文档
- 28个适于双筒镜观测的天体或天区(28 for binocular observation objects or area).doc
- 2、经验(2, experience).doc
- 27只极度低估股或将翻番(27 extremely undervalued shares or double).doc
- 2全面质量管理(2 total quality management).doc
- 2的平方(2 squared).doc
- 3.3摩擦力(3.3 friction).doc
- 3.5磁场对运动电荷的作用力(3.5 the action of the magnetic field on the motion charge).doc
- 307的助力转向(307 power steering).doc
- 3.20正显赖耶持种染净因果方成(The 3.20 is to Laya dyeing net causal Fang Cheng).doc
- 3 简单动画制作(3 simple animation).doc
- mysql修复数据表(MySQL repair data table).doc
- mtk手机文件介绍(MTK mobile phone file introduction).doc
- nand flash与nor flash的特性(NAND闪存与NOR闪存的特性).doc
- ncr主要部件故障分析与排除(电子配件)(NCR main component trouble analysis and elimination (electronic parts)).doc
- net framework 4 中的新增功能(New features in net framework 4).doc
- net各版本特征(.net各版本特征).doc
- nike kids店企业培训面培训材料 如何增加童装顾问收入(Nike kids shop, enterprise training, training materials, how to increase children's clothing consultant income).doc
- nike鞋的小知识(Little knowledge of Nike shoes).doc
- msp430串口数据收发的讨论(Discussion on data receiving and sending of MSP430 serial port).doc
- msds氮磷肥(msds氮磷肥).doc
文档评论(0)