mysql:最实用的sql语句_MySQL
bitsCN.com
mysql:最实用的sql语句
1.把catalog_product_entity_text表字段里面的 UPDATE `catalog_product_entity_text` SET `value` = REPLACE(`value`, ' 0 2.给表添加一个列 ALTER TABLE `isc_product_tags` ADD `bigtags` VARCHAR(20) (1)删除多余的行数 www.bitsCN.com delete FROM `isc_product_tags` WHERE `tagname`='' 3.删除表的数据 TRUNCATE TABLE `directory_country` 4.关联查找tags表里的tags的相关的其他tags: (1)查找tags表里的tags的相关的其他tags: SELECT * FROM `isc_product_tags` WHERE `bigtags`=(SELECT `bigtags` FROM `isc_product_tags` WHERE `tagfriendlyname`='720p-car-dvr') and `tagfriendlyname` != '720p-car-dvr' ORDER BY 'tagname' DESC; (2)查找某个产品的所有关联tags: SELECT * FROM `isc_product_tags` WHERE `tagid`in(SELECT `tagid` FROM `isc_product_tagassociations` WHERE `productid`=(SELECT `productid` FROM `isc_products` WHERE `prodname`='Mega Pixel 720p HD IR Array Waterproof Network TF Storage Camera')) SELECT * FROM `isc_product_tags` WHERE `tagid` in(SELECT `tagid` FROM `isc_product_tagassociations` WHERE `productid`=(SELECT `productid` FROM `isc_products` WHERE `prodname`='5 Megapixel Sensor Full HD 1080P Outdoor IP Camera 120m IR Night View ')) ORDER BY tagname ASC 5.更改产品价格: UPDATE`isc_products` SET `prodretailprice` = '92.0000', `prodsaleprice`='69.0000' WHERE `productid` =1605; 6.导入导出数据库命令:(bin目录下) 导出:mysqldump -u root -p bokele >c:/mysql.sql --default-character-set=utf8 导入:C:/mysql/bin/> mysql -u root -p 说明:C:/mysql/bin/表示进入mysql程序根目录 C:/helloapp/schema/sampledb.sql是要导入数据库的文件的位置 c:/mysql.sql是导出的sql文件 --default-character-set=utf8 指编码方式 7.建新表 CREATE TABLE IF NOT EXISTS `isc_pluginproduct_association` ( `id` int(11) NOT NULL AUTO_INCREMENT, `main_cat_id` int(11) NOT NULL, `product_id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=66 ; INSERT INTO `isc_pluginproduct_association` (`id`, `main_cat_id`, `product_id`) VALUES (65, 31, 24), (64, 31, 18), (63, 31, 23), (62, 32, 24), (61, 32, 23), (60, 32, 28), (51, 38, 26), (16, 36, 14), (15, 36, 15), (50, 38, 23), (49, 38, 22), (48, 38, 21), (47, 38, 20), (46, 38, 18), (45, 38, 16), (44, 38, 12), (43, 38, 10), (42, 38, 15), (41, 38, 17), (40, 38, 13), (57, 39, 16), (56, 39, 15), (55, 39, 14); 8.多个and条件的查询语句 (1)myphp的sql语句: SELECT * FROM `isc_products` WHERE `prodcode` = 'IP-Z0144' AND `prodname` LIKE '%Tilt WiFi %' AND `prodprice` = 144.00 LIMIT 0 , 30 9.把产品名字中的特殊符号和空格替换为-号,查找产品 SELECT * FROM `isc_products` WHERE `prodname` like '%5%' and `prodname` like '%Megapixels%' and `prodname` like '%1%' and `prodname` like '%2.5%' and `prodname` like '%Sensor%' and `prodname` like '%720P%' and `prodname` like '%Outdoor%' and `prodname` like '%IP%' and `prodname` like '%Camera%' and `prodname` like '%40m%' and `prodname` like '%IR%' and `prodname` like '%Night%' and `prodname` like '%View%' 10.写一个数据库的语句:将A表里,B字段中第一个C字符替换成D (1) 查询`isc_search_corrections`表的`correction`字段的首字母 SELECT SUBSTRING(`correction`,1,2) FROM `isc_search_corrections` (2) 更新:`isc_search_corrections`表,`correction`字段含有首字母C的替换首字母为D UPDATE `isc_search_corrections` SET `correction` = REPLACE(`correction`, 'C', 'D') WHERE SUBSTRING(`correction`,1,2)='C'

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

Oracle database and MySQL are both databases based on the relational model, but Oracle is superior in terms of compatibility, scalability, data types and security; while MySQL focuses on speed and flexibility and is more suitable for small to medium-sized data sets. . ① Oracle provides a wide range of data types, ② provides advanced security features, ③ is suitable for enterprise-level applications; ① MySQL supports NoSQL data types, ② has fewer security measures, and ③ is suitable for small to medium-sized applications.

PHP provides the following methods to delete data in MySQL tables: DELETE statement: used to delete rows matching conditions from the table. TRUNCATETABLE statement: used to clear all data in the table, including auto-incremented IDs. Practical case: You can delete users from the database using HTML forms and PHP code. The form submits the user ID, and the PHP code uses the DELETE statement to delete the record matching the ID from the users table.
