October 12, 2023

more mysql commands

Advanced MySQL Commands with Examples Advanced MySQL Commands with Examples 1. DISTINCT Clause To remove duplicate rows based on a column, you can use the DISTINCT keyword: SELECT DISTINCT age FROM students; 2. BETWEEN Operator To filter rows within a certain range, you can use the BETWEEN operator: SELECT * FROM students WHERE age BETWEEN …

more mysql commands Read More »

data types in mysql

MySQL Data Types with Examples Numeric Data Types Numeric Data TypesIn MySQL, numeric data types are used to store numeric values. They can be categorized into exact numeric types, like INTEGER, and approximate numeric types, like FLOAT. Data Type Description Example INT A normal-size integer that can be signed or unsigned. INT(11) FLOAT A floating-point …

data types in mysql Read More »

Scroll to Top