亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? manual_news.html

?? 關于mysql學習的 中文教程
?? HTML
?? 第 1 頁 / 共 5 頁
字號:
  <li>MyISAM tables now allow keys on <code>NULL</code> and <code>BLOB/TEXT</code> columns. </li>
  <li>The following join is now much faster: <code>SELECT ... FROM t1 LEFT JOIN t2 ON ... 
    WHERE t2.not_null_column IS NULL</code>. </li>
  <li><code>ORDER BY</code> and <code>GROUP BY</code> can be done on functions. </li>
  <li>Changed handling of 'const_item' to allow handling of <code>ORDER BY RAND()</code>. </li>
  <li>Indexes are now used for <code>WHERE key_column = function</code>. </li>
  <li>Indexes are now used for <code>WHERE key_column = column_name</code> even if the columns 
    are not identically packed. </li>
  <li>Indexes are now used for <code>WHERE column_name IS NULL</code>. </li>
  <li>Changed heap tables to be stored in low_byte_first order (to make it easy to convert to 
    MyISAM tables) </li>
  <li>Automatic change of HEAP temporary tables to MyISAM tables in case of 'table is full' 
    errors. </li>
  <li>Added option <code>--init-file=file_name</code> to <code>mysqld</code>. </li>
  <li><code>COUNT(DISTINCT value,[value,...])</code> </li>
  <li><code>CREATE TEMPORARY TABLE</code> now creates a temporary table, in its own namespace, 
    that is automatically deleted if connection is dropped. </li>
  <li>New keywords (required for <code>CASE</code>): <code>CASE, THEN, WHEN, ELSE and END</code>. 
  </li>
  <li>New functions <code>EXPORT_SET()</code> and <code>MD5()</code>. </li>
  <li>Support for the GB2312 Chinese character set. </li>
</ul>

<h3><a href="manual_toc.html#News-3.23.1" name="News-3.23.1">D.1.7 Changes in release 
3.23.1</a></h3>

<ul>
  <li>Fixed some compilation problems. </li>
</ul>

<h3><a href="manual_toc.html#News-3.23.0" name="News-3.23.0">D.1.8 Changes in release 
3.23.0</a></h3>

<ul>
  <p>A new table handler library (<code>MyISAM</code>) with a lot of new features. See 
  section <a href="manual_Server.html#Table_types">9.4 MySQL table types</a>. </p>
  <li>You can create in-memory <code>HEAP</code> tables which are extremely fast for lookups. </li>
  <li>Support for big files (63 bit) on OSes that support big files. </li>
  <li>New function <code>LOAD_FILE(filename)</code> to get the contents of a file as a string 
    value. </li>
  <li>New operator <code>&lt;=&gt;</code> which will act as <code>=</code> but will return 
    TRUE if both arguments are <code>NULL</code>. This is useful for comparing changes between 
    tables. </li>
  <li>Added the ODBC 3.0 <code>EXTRACT(interval FROM datetime)</code> function. </li>
  <li>Columns defined as <code>FLOAT(X)</code> is not rounded on storage and may be in 
    scientific notation (1.0 E+10) when retrieved. </li>
  <li><code>REPLACE</code> is now faster than before. </li>
  <li>Changed <code>LIKE</code> character comparison to behave as <code>=</code>; This means 
    that <code>'e' LIKE ''e'</code> is now true. </li>
  <li><code>SHOW TABLE STATUS</code> returns a lot of information about the tables. </li>
  <li>Added <code>LIKE</code> to the <code>SHOW STATUS</code> command. </li>
  <li>Added privilege column to <code>SHOW COLUMNS</code>. </li>
  <li>Added columns <code>packed</code> and <code>comment</code> to <code>SHOW INDEX</code>. </li>
  <li>Added comments to tables (with <code>CREATE TABLE ... COMMENT &quot;xxx&quot;</code>). </li>
  <li>Added <code>UNIQUE</code>, as in <code>CREATE TABLE table_name (col int not null UNIQUE)</code> 
  </li>
  <li>New create syntax: <code>CREATE TABLE table_name SELECT ....</code> </li>
  <li>New create syntax: <code>CREATE TABLE IF NOT EXISTS ...</code> </li>
  <li>Allow creation of <code>CHAR(0)</code> columns. </li>
  <li><code>DATE_FORMAT()</code> now requires <samp>`%'</samp> before any format character. </li>
  <li><code>DELAYED</code> is now a reserved word (sorry about that :( ). </li>
  <li>An example procedure is added: <code>analyse</code>, file: <tt>`sql_analyse.c'</tt>. 
    This will describe the data in your query. Try the following: <pre>SELECT ... FROM ... WHERE ... PROCEDURE ANALYSE([max elements,[max memory]])
</pre>
    <p>This procedure is extremely useful when you want to check the data in your table! </p>
  </li>
  <li><code>BINARY</code> cast to force a string to be compared case sensitively. </li>
  <li>Added option <code>--skip-show-database</code> to <code>mysqld</code>. </li>
  <li>Check if a row has changed in an <code>UPDATE</code> now also works with <code>BLOB</code>/<code>TEXT</code> 
    columns. </li>
  <li>Added the <code>INNER</code> join syntax. <strong>NOTE</strong>: This made <code>INNER</code> 
    an reserved word! </li>
  <li>Added support for netmasks to the hostname in the <strong>MySQL</strong> tables. You can 
    specify a netmask using the <code>IP/NETMASK</code> syntax. </li>
  <li>If you compare a <code>NOT NULL DATE/DATETIME</code> column with <code>IS NULL</code>, 
    this is changed to a compare against <code>0</code> to satisfy some ODBC applications. (By 
    <a href="mailto:shreeve@uci.edu">shreeve@uci.edu</a>). </li>
  <li><code>NULL IN (...)</code> now returns <code>NULL</code> instead of <code>0</code>. This 
    will ensure that <code>null_column NOT IN (...)</code> doesn't match <code>NULL</code> 
    values. </li>
  <li>Fix storage of floating point values in <code>TIME</code> columns. </li>
  <li>Changed parsing of <code>TIME</code> strings to be more strict. Now the fractional 
    second part is detected (and currently skipped). The following formats are supported: <dl
    compact>
      <dt><code>[[DAYS] [H]H:]MM:]SS[.fraction]</code> </dt>
      <dd> </dd>
      <dt><code>[[[[[H]H]H]H]MM]SS[.fraction]</code> </dt>
      <dd> </dd>
    </dl>
  </li>
  <li>Detect (and ignore) second fraction part from <code>DATETIME</code>. </li>
  <li>Added the <code>LOW_PRIORITY</code> attribute to <code>LOAD DATA INFILE</code>. </li>
  <li>The default index name now uses the same case as the used column name. </li>
  <li>Changed default number of connections to 100. </li>
  <li>Use bigger buffers when using <code>LOAD DATA INFILE</code>. </li>
  <li><code>DECIMAL(x,y)</code> now works according to ANSI SQL. </li>
  <li>Added aggregate UDF functions. Thanks to Andreas F. Bobak </li>
  <li><code>LAST_INSERT_ID()</code> is now updated for <code>INSERT INTO ... SELECT</code>. </li>
  <li>Some small changes to the join table optimizer to make some joins faster. </li>
  <li><code>SELECT DISTINCT</code> is much faster; It uses the new <code>UNIQUE</code> 
    functionality in <code>MyISAM</code>. One difference compared to <strong>MySQL</strong> 
    3.22 is that the output of <code>DISTINCT</code> is not sorted anymore. </li>
  <li>All C client API macros are now functions to make shared libraries more reliable. 
    Because of this, you can no longer call <code>mysql_num_fields()</code> on a <code>MYSQL</code> 
    object, you must use <code>mysql_field_count()</code> instead. </li>
  <li>Added use of <code>LIBEWRAP</code>; Patch by Henning P . Schmiedehausen. </li>
  <li>Don't allow <code>AUTO_INCREMENT</code> for other than numerical columns. </li>
  <li>Using <code>AUTO_INCREMENT</code> will now automatically make the column <code>NOT NULL</code>. 
  </li>
  <li>Show <code>NULL</code> as the default value for AUTO_INCREMENT columns. </li>
  <li>Added <code>SQL_BIG_RESULT</code>; <code>SQL_SMALL_RESULT</code> is now default. </li>
  <li>Added a shared library RPM. This enchancement was contributed by David Fox 
    (dsfox@cogsci.ucsd.edu). </li>
  <li>Added a <code>--enable-large-files/--disable-large-files</code> switch to <code>configure</code>. 
    See <tt>`configure.in'</tt> for some systems where this is automatically turned off 
    because of broken implementations. </li>
  <li>Upgraded <code>readline</code> to 4.0. </li>
  <li>New <code>CREATE TABLE</code> options: <code>PACK_KEYS</code> and <code>CHECKSUM</code>. 
  </li>
  <li>Added <code>mysqld</code> option <code>--default-table-type</code>. </li>
</ul>

<h2><a href="manual_toc.html#News-3.22.x" name="News-3.22.x">D.2 Changes in release 3.22.x</a></h2>

<p>The 3.22 version has faster and safer connect code and a lot of new nice enhancements. 
The reason for not including these changes in the 3.21 version is mainly that we are 
trying to avoid big changes to 3.21 to keep it as stable as possible. As there aren't 
really any MAJOR changes, upgrading to 3.22 should be very easy and painless. See section <a
href="manual_Installing.html#Upgrading-from-3.21">4.16.2 Upgrading from a 3.21 version to 
3.22</a>. </p>

<p>3.22 should also be used with the new <code>DBD-mysql</code> (1.20xx) driver that can 
use the new connect protocol! </p>

<h3><a href="manual_toc.html#News-3.22.28" name="News-3.22.28">D.2.1 Changes in release 
3.22.28</a></h3>

<ul>
  <li>Fixed problem with <code>LEFT JOIN</code> and <code>COUNT()</code> on a column which was 
    declared <code>NULL</code> + and it had a <code>DEFAULT</code> value. </li>
  <li>Fixed core dump problem when using <code>CONCAT()</code> in a <code>WHERE</code> clause. 
  </li>
  <li>Fixed problem with <code>AVG()</code> and <code>STD()</code> with <code>NULL</code> 
    values. </li>
</ul>

<h3><a href="manual_toc.html#News-3.22.27" name="News-3.22.27">D.2.2 Changes in release 
3.22.27</a></h3>

<ul>
  <li>Fixed prototype in <tt>`my_ctype.h'</tt> when using other character sets. </li>
  <li>Some configure issues to fix problems with big file system detection. </li>
  <li>Fixed problem when sorting on big blob columns. </li>
  <li><code>ROUND()</code> will now work on Win32. </li>
</ul>

<h3><a href="manual_toc.html#News-3.22.26" name="News-3.22.26">D.2.3 Changes in release 
3.22.26</a></h3>

<ul>
  <li>Fixed core dump with empty <code>BLOB/TEXT</code> column to <code>REVERSE()</code>. </li>
  <li>Extended <code>/*! */</code> with version numbers. </li>
  <li>Changed <code>SUBSTRING(text FROM pos)</code> to conform to ANSI SQL. (Before this 
    construct returned the rightmost 'pos' characters). </li>
  <li>Fixed problem with <code>LOCK TABLES</code> combined with <code>DELETE FROM table</code> 
  </li>
  <li>Fixed problem that INSERT ... SELECT didn't use SQL_BIG_TABLES. </li>
  <li><code>SET SQL_LOW_PRIORITY_UPDATES=#</code> didn't work. </li>
  <li>Password wasn't updated correctly if privileges didn't change on: <code>GRANT ... 
    IDENTIFIED BY</code> </li>
  <li>Fixed range optimizer bug in <code>SELECT * FROM table_name WHERE key_part1 &gt;= const 
    AND (key_part2 = const OR key_part2 = const)</code> </li>
  <li>Fixed bug in compression key handling in ISAM. </li>
</ul>

<h3><a href="manual_toc.html#News-3.22.25" name="News-3.22.25">D.2.4 Changes in release 
3.22.25</a></h3>

<ul>
  <li>Fixed some small problems with the installation. </li>
</ul>

<h3><a href="manual_toc.html#News-3.22.24" name="News-3.22.24">D.2.5 Changes in release 
3.22.24</a></h3>

<ul>
  <li><code>DATA</code> is not a reserved word anymore. </li>
  <li>Fixed optimizer bug with tables with only one row. </li>
  <li>Fixed bug when using <code>LOCK TABLES table_name READ; FLUSH TABLES;</code> </li>
  <li>Applied some patches for HP-UX. </li>
  <li><code>isamchk</code> should now work on Win32. </li>
  <li>Changed <tt>`configure'</tt> to not use big file handling on Linux as this crashes some 
    RedHat 6.0 systems </li>
</ul>

<h3><a href="manual_toc.html#News-3.22.23" name="News-3.22.23">D.2.6 Changes in release 
3.22.23</a></h3>

<ul>
  <li>Upgraded to use Autoconf 2.13, Automake 1.4 and <code>libtool</code> 1.3.2. </li>
  <li>Better support for SCO in <code>configure</code>. </li>
  <li>Added option <code>--defaults-file=###</code> to option file handling to force use of 
    only one specific option file. </li>
  <li>Extended <code>CREATE</code> syntax to ignore <code>MySQL 3.23</code> keywords. </li>
  <li>Fixed deadlock problem when using <code>INSERT DELAYED</code> on a table locked with <code>LOCK 
    TABLES</code>. </li>
  <li>Fixed deadlock problem when using <code>DROP TABLE</code> on a table that was locked by 
    another thread. </li>
  <li>Add logging of <code>GRANT/REVOKE</code> commands in the update log. </li>
  <li>Fixed <code>isamchk</code> to detect a new error condition. </li>
  <li>Fixed bug in <code>NATURAL LEFT JOIN</code>. </li>
</ul>

<h3><a href="manual_toc.html#News-3.22.22" name="News-3.22.22">D.2.7 Changes in release 
3.22.22</a></h3>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
26uuu国产日韩综合| 91久久久免费一区二区| 日韩一区日韩二区| 91.麻豆视频| 成人性视频免费网站| 午夜精品久久久久久久99樱桃| 久久理论电影网| 欧美三级电影在线看| 成人免费黄色在线| 久久精品国产一区二区三区免费看| 亚洲男同1069视频| 国产日韩欧美麻豆| 精品国产免费视频| 欧美一区二区在线不卡| 欧美三级电影精品| 一本大道av伊人久久综合| 国产精品综合一区二区| 免费精品99久久国产综合精品| 亚洲线精品一区二区三区八戒| 国产精品三级视频| 国产目拍亚洲精品99久久精品| 在线播放中文字幕一区| 欧美日韩在线播| 在线国产电影不卡| 91色.com| 成人精品高清在线| 国产精品乡下勾搭老头1| 免费成人你懂的| 日本亚洲欧美天堂免费| 性感美女久久精品| 午夜伦欧美伦电影理论片| 一区二区三区在线视频观看| 国产精品萝li| 亚洲视频狠狠干| 亚洲免费资源在线播放| 中文字幕在线不卡| 亚洲欧洲中文日韩久久av乱码| 中文字幕高清不卡| 中文字幕在线观看一区| 国产精品国模大尺度视频| 国产精品美日韩| 国产精品嫩草99a| 亚洲特级片在线| 亚洲伊人伊色伊影伊综合网| 亚洲国产精品一区二区尤物区| 亚洲午夜日本在线观看| 亚洲成人动漫一区| 欧美aaa在线| 国模少妇一区二区三区| 国产999精品久久久久久绿帽| 成人动漫一区二区| 色综合欧美在线| 欧美群妇大交群中文字幕| 欧美日韩不卡一区| 欧美mv日韩mv亚洲| 国产精品狼人久久影院观看方式| 国产精品久久久久久久第一福利| 亚洲欧洲日韩一区二区三区| 亚洲中国最大av网站| 日本美女视频一区二区| 极品少妇xxxx精品少妇| 丰满少妇在线播放bd日韩电影| 91网站黄www| 3atv在线一区二区三区| 精品国产亚洲在线| 国产精品福利影院| 日韩二区三区四区| 国产精品亚洲一区二区三区在线| 不卡的av电影| 欧美日韩成人在线| 国产清纯白嫩初高生在线观看91 | 欧美视频完全免费看| 欧美酷刑日本凌虐凌虐| 久久久久久一二三区| 亚洲色图丝袜美腿| 青青草国产成人99久久| 成人免费高清视频| 欧美精品电影在线播放| 国产午夜精品福利| 亚洲电影欧美电影有声小说| 精品一区二区三区免费视频| 99久久99久久精品免费观看| 91精品国产丝袜白色高跟鞋| 国产精品天美传媒| 日韩电影一区二区三区四区| 丁香激情综合五月| 91精品欧美福利在线观看| 国产精品日韩精品欧美在线| 午夜视频一区在线观看| zzijzzij亚洲日本少妇熟睡| 欧美三级日韩在线| 国产精品盗摄一区二区三区| 免费在线看一区| 日本道免费精品一区二区三区| 日韩精品一区二区三区四区视频 | 国产在线精品一区在线观看麻豆| 色欧美片视频在线观看在线视频| 欧美成人精品3d动漫h| 亚洲一区免费在线观看| 高清免费成人av| 欧美电影免费观看完整版| 一区二区在线观看视频在线观看| 国产一区二区三区免费看| 欧美日韩免费在线视频| 国产精品理论在线观看| 国产美女精品一区二区三区| 欧美日韩国产综合视频在线观看 | 欧美精品少妇一区二区三区| 国产精品的网站| 国产美女在线观看一区| 欧美精品黑人性xxxx| 亚洲在线一区二区三区| 99久久久久久| 欧美精彩视频一区二区三区| 国产综合色产在线精品| 91精品国产免费| 午夜伊人狠狠久久| 欧美在线综合视频| 综合久久一区二区三区| 国产·精品毛片| 国产欧美日产一区| 国产精品一区二区三区四区 | 欧美大胆一级视频| 丝袜亚洲另类欧美| 欧美三级日韩在线| 亚洲在线视频网站| 欧美怡红院视频| 亚洲一区二三区| 欧美三级中文字| 无吗不卡中文字幕| 欧美猛男男办公室激情| 亚洲福利视频三区| 欧美日本韩国一区二区三区视频| 亚洲精品免费播放| 在线视频欧美精品| 亚洲免费av观看| 欧美亚洲丝袜传媒另类| 亚洲国产成人精品视频| 欧美日韩国产高清一区二区| 午夜精品久久久久久久久久| 911国产精品| 精品亚洲欧美一区| 国产日本亚洲高清| 99久久99久久精品国产片果冻| 蜜臀久久久99精品久久久久久| 欧美人xxxx| 色综合久久精品| 国产精品初高中害羞小美女文| av不卡免费电影| 一区二区三区在线免费视频| 欧美色图激情小说| 日韩成人一区二区| 精品成人私密视频| 成人a区在线观看| 亚洲精品v日韩精品| 欧美美女一区二区| 久久国产麻豆精品| 中文字幕一区二区三区蜜月| 91黄色激情网站| 日本午夜一本久久久综合| 久久综合九色综合欧美98| 本田岬高潮一区二区三区| 亚洲综合久久av| 亚洲精品在线三区| 99麻豆久久久国产精品免费| 亚洲最新视频在线播放| 日韩欧美一级片| 成人一道本在线| 爽好多水快深点欧美视频| 精品毛片乱码1区2区3区| 成人av网址在线观看| 婷婷夜色潮精品综合在线| 久久久99精品免费观看| 色94色欧美sute亚洲13| 麻豆国产欧美一区二区三区| 国产精品二区一区二区aⅴ污介绍| 欧美性猛片aaaaaaa做受| 精品亚洲免费视频| 亚洲黄色免费电影| 精品福利二区三区| 欧美影视一区在线| 国产91精品一区二区麻豆亚洲| 亚洲二区在线视频| 欧美国产激情一区二区三区蜜月| 在线亚洲人成电影网站色www| 美国一区二区三区在线播放| 亚洲丝袜自拍清纯另类| 精品国产亚洲在线| 欧美日韩亚洲综合一区| 国产91丝袜在线18| 美女被吸乳得到大胸91| 亚洲一区中文在线| 国产精品午夜在线| 日韩一区二区三区电影| 色婷婷av久久久久久久| 粉嫩绯色av一区二区在线观看 | 91精品婷婷国产综合久久性色| 成人性生交大片免费看中文| 美女看a上一区| 亚洲第一主播视频|