<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Navicat &#8211; 老丁的博客</title>
	<atom:link href="https://www.laoding.me/archives/tag/navicat/feed" rel="self" type="application/rss+xml" />
	<link>https://www.laoding.me</link>
	<description></description>
	<lastBuildDate>Mon, 04 Nov 2024 05:44:45 +0000</lastBuildDate>
	<language>zh-Hans</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.3</generator>

<image>
	<url>https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/09/cropped-图片_20240927133356-768x768-1-32x32.jpg</url>
	<title>Navicat &#8211; 老丁的博客</title>
	<link>https://www.laoding.me</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Navicat Premium 16 破解教程</title>
		<link>https://www.laoding.me/archives/832</link>
					<comments>https://www.laoding.me/archives/832#comments</comments>
		
		<dc:creator><![CDATA[laoding]]></dc:creator>
		<pubDate>Mon, 04 Nov 2024 05:44:45 +0000</pubDate>
				<category><![CDATA[办公网络]]></category>
		<category><![CDATA[Navicat]]></category>
		<guid isPermaLink="false">https://www.laoding.me/?p=832</guid>

					<description><![CDATA[一.安装 Navicat 安装很简单，只需要选择安装路径即可安装 二、激活 Navicat 2.1、设置安装路 [&#8230;]]]></description>
										<content:encoded><![CDATA[<h1>一.安装 Navicat</h1>
<p>安装很简单，只需要选择安装路径即可安装</p>
<h1>二、激活 Navicat</h1>
<h4>2.1、设置安装路径，点击 Patch</h4>
<p><img decoding="async" src="https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/11/20241104054253328.png?x-oss-process=image/auto-orient,1/quality,q_90/format,webp" alt="" /></p>
<p>出现提示，点击是</p>
<h4>2.2、生成许可证</h4>
<p> 在 KeyGen 中选择软件，版本，语言后，点击 Generate，生成许可证</p>
<p> 同时打开 Navicat Premium，点击注册</p>
<p> 将生成的许可证复制到下图位置</p>
<h4>2.3、手动激活</h4>
<p><code>关闭电脑的网络连接</code>，点击激活后，会出现服务器不可用提示，点击手动激活</p>
<p>1. 点击手动激活之后，只会出现激活码，将激活码复制到 Request Code 框中<br />
2. 点击 Generate Activation Code，会在 Activation Code 框中生成激活码<br />
3. 将 Activation Code 框中的激活码复制到左边的激活码框中，点击激活</p>
<p> 点击激活之后成功会出现永久许可证标识</p>
<p> 进入 Navicat 软件，点击帮助→关于，查看激活信息</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.laoding.me/archives/832/feed</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>电商Navicat常用SQL语句</title>
		<link>https://www.laoding.me/archives/666</link>
					<comments>https://www.laoding.me/archives/666#respond</comments>
		
		<dc:creator><![CDATA[laoding]]></dc:creator>
		<pubDate>Mon, 07 Oct 2024 04:07:22 +0000</pubDate>
				<category><![CDATA[办公网络]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[Navicat]]></category>
		<category><![CDATA[电商]]></category>
		<guid isPermaLink="false">https://www.laoding.me/?p=666</guid>

					<description><![CDATA[1.Lazada销售订单/结算订单日期转换 =IFERROR(TEXT(DATEVALUE(I2),"YYYY [&#8230;]]]></description>
										<content:encoded><![CDATA[<h3>1.Lazada销售订单/结算订单日期转换</h3>
<pre class="code">=IFERROR(TEXT(DATEVALUE(I2),"YYYY-MM-DD")&amp;" "&amp;TEXT(TIME(HOUR(I2),MINUTE(I2),0),"hh:mm"),"")</pre>
<pre class="code">=IFERROR(TEXT(DATEVALUE(J2),"YYYY-MM-DD"),"")</pre>
<ul>
<li>为2024年的结算订单增加店铺名称</li>
</ul>
<pre class="code">UPDATE `Income_Laza`
SET
    `店铺名称` = 'ALPHA(LZ)'
WHERE
    (YEAR(`结算日期`) = 2024 OR YEAR(`结算日期`) = 0 OR `订单号` = '')
    AND YEAR(`结算日期`) != 2023;
</pre>
<ul>
<li>为2024年的销售订单增加店铺名称</li>
</ul>
<pre class="code">UPDATE orders_Laza
SET
    `店铺名称` = 'ALPHA(LZ)'
WHERE YEAR(`订单创建时间`) = 2024;</pre>
<ul>
<li>删除2024年的结算订单</li>
</ul>
<pre class="code">DELETE FROM `veger`.`Income_Laza`
WHERE
    (YEAR(`结算日期`) = 2024 OR YEAR(`结算日期`) = 0 OR `订单号` = '')
    AND YEAR(`结算日期`) != 2023;</pre>
<h3>2.修改店铺名称</h3>
<pre class="code">UPDATE Income_Laza
SET
    `店铺名称` = 'VEGER(LZ)'
WHERE  `结算日期` LIKE '%2024%' AND `店铺名称` IS NULL;</pre>
<pre class="code">UPDATE orders_Laza
SET 
    `店铺名称` = 'MOFIT(LZ)'
WHERE  `订单创建时间` LIKE '%2024%' AND `店铺名称` IS NULL;</pre>
]]></content:encoded>
					
					<wfw:commentRss>https://www.laoding.me/archives/666/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
