Skip to content

Logic Bytes

Spread Your Knowledge

  • Home
  • How To
  • PHP
    • Cakephp
    • WordPress
    • CodeIgniter
    • Laravel
  • Python
    • Django
    • Flask
  • Contact

SQL

CodeIgniter / Database / mysql / mysqli / PHP / SQL

Altering column size in SQL Server

February 12, 2018 Chandan SharmaComment on Altering column size in SQL Server

Altering column size in SQL Server ALTER TABLE table_name ALTER COLUMN column_name datatype; LIKE:: ALTER TABLE `product` MODIFY COLUMN `updatedon` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP …

Read More
CodeIgniter / Database / PHP / SQL

update all row in codeigniter

December 19, 2017 Chandan SharmaComment on update all row in codeigniter

update all row in codeigniter   $this->db->update_batch() Generates an update string based on the data you supply, and runs the query. You can either pass …

Read More
Article / PHP / SQL

How To Remove html tags from validation_errors() in Codeigniter

December 7, 2017 Chandan SharmaComment on How To Remove html tags from validation_errors() in Codeigniter

How To Remove html tags from validation_errors() in Codeigniter   Remove html tags from validation_errors() in Codeigniter Set the Opening tag and Closing Tags for …

Read More
PHP / SQL

Update Two Column Field By Splitting The VAlue from One Column in SQL.

December 7, 2017 Chandan SharmaComment on Update Two Column Field By Splitting The VAlue from One Column in SQL.

Update Two Column Field By Splitting The Value from One Column in SQL. Here the split will be done depending on space in name. For …

Read More
PHP / SQL

Finding Duplicates with SQL

December 7, 2017 Chandan SharmaComment on Finding Duplicates with SQL

Finding Duplicates with SQL::   SELECT `email`,  COUNT(`email`) AS NumOccurrences FROM `user` GROUP BY `email` HAVING ( COUNT(`email`) > 1 )

Read More
PHP / SQL

How to split a single column values to multiple column values

December 7, 2017 Chandan SharmaComment on How to split a single column values to multiple column values

How to split a single column values to multiple column values:: For Example: #Current table Field is like:: Name ———— abcd efgh ijk lmn opq …

Read More
SQL

Update Two Column Field By Splitting The VAlue from One Column in SQL.

December 5, 2017 Chandan SharmaComment on Update Two Column Field By Splitting The VAlue from One Column in SQL.

Update Two Column Field By Splitting The VAlue from One Column in SQL. Here the split will be done depending on space in name.  Here …

Read More
SQL

Update two column field by Splitting the value from one column in SQL

December 5, 2017 Chandan SharmaComment on Update two column field by Splitting the value from one column in SQL

Update two column field by Splitting the value from one column in SQL QUERY:QUERY: UPDATE user u2 set u2.first_name = SUBSTRING_INDEX(u2.name, ‘ ‘, 1), u2.last_name …

Read More
SQL

SQL update from one Table to another based on a ID match

December 5, 2017 Chandan SharmaComment on SQL update from one Table to another based on a ID match

SQL update from one Table to another based on a ID match MS SQL UPDATE Sales_Import SET Sales_Import.AccountNumber = RAN.AccountNumber FROM Sales_Import SI INNER JOIN …

Read More
SQL

SQL – How to split a single column values to multiple column values

December 5, 2017 Chandan SharmaComment on SQL – How to split a single column values to multiple column values

How to split a single column values to multiple column values.. For Example: #Current table Field is like:: Name ———— abcd efgh ijk lmn opq …

Read More

Posts navigation

1 2 Next

Recent Posts

  • Python Automation Framework-PyUnit (Unittest) Framework
  • Python Automation Framework-TestProject Framework
  • Python Automation Framework-Pytest Framework
  • Python Automation Framework-Lettuce Framework
  • Python Automation Framework-Behave Framework:
  • Top Python Testing Automation Frameworks in 2024
  • Visual Studio Code Keyboard Shortcut Editor
  • Visual Studio Code Keyboard Shortcuts
  • How to Remove Sidebar from Category Pages in WordPress?
  • Best Practices for API Responses

Automation Frameworks Automation Testing Behave Framework Blogger Blogspot Cakephp Cheat Sheets Code Editor CodeIgniter Code Navigation Collaborative Coding Debugging Tools Disable Mouse Right Click Domain Extension Editor Extension Full form Facebook Facebook Video Download IDE JavaScript JQuery Lettuce Framework Microsoft Code Editor Open-Source Code Editor PHP Pytest Framework Python Python-3.x Python Automation Python Automation Frameworks Python Automation Testing Python Pytest Framework Python Testing Frameworks Python TestProject Framework Python Unittest Framework Syntax Highlighting Testing Frameworks Text Editor for Developers Visual Code Visual Code Editor Visual Studio Code Visual Studio Code Cheat Sheet VSCode VSCodeEditor WordPress

Copyright © 2026 Logic Bytes.
Powered by WordPress and PridMag.