<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Tiến</title>
    <description>The latest articles on DEV Community by Tiến (@tienden1296).</description>
    <link>https://dev.to/tienden1296</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F476774%2F74e0a1e4-fa1c-4aa2-9c5d-e1f779f4ba31.jpeg</url>
      <title>DEV Community: Tiến</title>
      <link>https://dev.to/tienden1296</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tienden1296"/>
    <language>en</language>
    <item>
      <title>SQL JOIN IN SQL</title>
      <dc:creator>Tiến</dc:creator>
      <pubDate>Tue, 11 Jan 2022 14:38:04 +0000</pubDate>
      <link>https://dev.to/tienden1296/sql-join-in-sql-4j9p</link>
      <guid>https://dev.to/tienden1296/sql-join-in-sql-4j9p</guid>
      <description>&lt;p&gt;Hi guys,&lt;br&gt;
These days I work with SQL Execution plans, when I have to detailed analysis of exactly my query execution, I realize don't have a difference between the two ways to get data from two tables on the match field.&lt;br&gt;
In this post, I mention INNER JOIN&lt;br&gt;
#type 1&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;SELECT
    u.UserName
    ,w.Name
FROM dbo.Users u, dbo.Wallets w 
WHERE u.UserGuid = w.UserGuid
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;with &lt;br&gt;
#type 2&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;SELECT
      u.UserName     
     ,w.Name
FROM dbo.Users u
JOIN Wallets w on u.UserGuid = w.UserGuid
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If I execute the query above with the execution plan then I have the plan below:&lt;br&gt;
#type 1&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--FByPGWIn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8c8fojvdkj5oxbkvogii.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--FByPGWIn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8c8fojvdkj5oxbkvogii.png" alt="Image description" width="880" height="534"&gt;&lt;/a&gt;&lt;br&gt;
#type 2 &lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s---JdGgUxY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/d5nqr4k9v7w1qxj4r9lw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s---JdGgUxY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/d5nqr4k9v7w1qxj4r9lw.png" alt="Image description" width="880" height="493"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Just example for this post 😁😁&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  &lt;strong&gt;So, is there no difference here?&lt;/strong&gt;
&lt;/h1&gt;

</description>
      <category>sql</category>
      <category>data</category>
    </item>
    <item>
      <title>How many ways to against spam post API?? </title>
      <dc:creator>Tiến</dc:creator>
      <pubDate>Tue, 10 Aug 2021 18:04:09 +0000</pubDate>
      <link>https://dev.to/tienden1296/how-many-ways-to-against-to-spam-post-api-1njm</link>
      <guid>https://dev.to/tienden1296/how-many-ways-to-against-to-spam-post-api-1njm</guid>
      <description></description>
      <category>api</category>
    </item>
    <item>
      <title>Vue native beginer</title>
      <dc:creator>Tiến</dc:creator>
      <pubDate>Mon, 02 Aug 2021 14:33:02 +0000</pubDate>
      <link>https://dev.to/tienden1296/vue-native-beginer-4g3i</link>
      <guid>https://dev.to/tienden1296/vue-native-beginer-4g3i</guid>
      <description>&lt;h2&gt;
  
  
  &lt;a href="https://vue-native.io/docs/installation.html"&gt;Vue js&lt;/a&gt;
&lt;/h2&gt;

&lt;h2&gt;
  
  
  Implement guile
&lt;/h2&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;# Vue native cli
npm install --global vue-native-cli
# For Expo users
npm install --global expo-cli
vue-native init &amp;lt;projectName&amp;gt;
$ cd &amp;lt;projectName&amp;gt;
$ npm start
$ npm run android/ios
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h3&gt;
  
  
  The composition API
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Ref&lt;/li&gt;
&lt;li&gt;Reactive&lt;/li&gt;
&lt;li&gt;Computed Values&lt;/li&gt;
&lt;li&gt;Watch &lt;/li&gt;
&lt;li&gt;WatchEffect&lt;/li&gt;
&lt;li&gt;Props&lt;/li&gt;
&lt;li&gt;Lifecycle Hooks&lt;/li&gt;
&lt;/ul&gt;


&lt;h4&gt;
  
  
  reactive vs ref
&lt;/h4&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;- reactive() only takes objects, NOT JS primitives (String, Boolean, Number, BigInt, Symbol, null, undefined).
- ref() is calling reactive() behind the scenes.
- Since reactive() works for objects and ref() calls reactive(), objects work for both.
- BUT, ref() has a .value property for reassigning, reactive() does not have this and therefore CANNOT be reassigned.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;em&gt;reference&lt;/em&gt; &lt;a href="https://stackoverflow.com/questions/61452458/ref-vs-reactive-in-vue-3"&gt;reactive with ref&lt;/a&gt;.&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;Lifecycle Hooks&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://v3.vuejs.org/guide/composition-api-lifecycle-hooks.html#lifecycle-hooks"&gt;vue 3 lifecycle hooks&lt;/a&gt;&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options API&lt;/th&gt;
&lt;th&gt;Hook inside &lt;em&gt;setup&lt;/em&gt;
&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;beforeCreate&lt;/td&gt;
&lt;td&gt;Not needed*&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;created&lt;/td&gt;
&lt;td&gt;Not needed*&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;beforeMount&lt;/td&gt;
&lt;td&gt;onBeforeMount&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;mounted&lt;/td&gt;
&lt;td&gt;onMounted&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;beforeUpdate&lt;/td&gt;
&lt;td&gt;onBeforeUpdate&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;updated&lt;/td&gt;
&lt;td&gt;onUpdated&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;beforeUnmount&lt;/td&gt;
&lt;td&gt;onBeforeUnmount&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;unmounted&lt;/td&gt;
&lt;td&gt;onUnmounted&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;errorCaptured&lt;/td&gt;
&lt;td&gt;onErrorCaptured&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;renderTracked&lt;/td&gt;
&lt;td&gt;onRenderTracked&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;renderTriggered&lt;/td&gt;
&lt;td&gt;onRenderTriggered&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;activated&lt;/td&gt;
&lt;td&gt;onActivated&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;deactivated&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

</description>
    </item>
  </channel>
</rss>
