Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
16 views
4 pages
Maths Op
Uploaded by
anushkaanand2021
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download
Save
Save maths op For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
0 ratings
0% found this document useful (0 votes)
16 views
4 pages
Maths Op
Uploaded by
anushkaanand2021
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Carousel Previous
Carousel Next
Download
Save
Save maths op For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
Download
Save maths op For Later
You are on page 1
/ 4
Search
Fullscreen
maths operator
mysql> select 6='6gfh';
+----------+
| 6='6gfh' |
+----------+
| 1 |
+----------+
1 row in set, 1 warning (0.02 sec)
mysql> select '6'='6gfh';
+------------+
| '6'='6gfh' |
+------------+
| 0 |
+------------+
1 row in set (0.00 sec)
mysql> select 2.37=2.4;
+----------+
| 2.37=2.4 |
+----------+
| 0 |
+----------+
1 row in set (0.00 sec)
mysql> select 7<>7;
+------+
| 7<>7 |
+------+
| 0 |
+------+
1 row in set (0.00 sec)
mysql> select NULL <> NULL;
+--------------+
| NULL <> NULL |
+--------------+
| NULL |
+--------------+
1 row in set (0.00 sec)
mysql> select 0<> NULL;
+----------+
| 0<> NULL |
+----------+
| NULL |
+----------+
1 row in set (0.00 sec)
mysql> select 10 between 0 and 100;
+----------------------+
| 10 between 0 and 100 |
+----------------------+
| 1 |
+----------------------+
1 row in set (0.02 sec)
mysql> select 10,55,34,233 between 0 and 100;
+----+----+----+-----------------------+
| 10 | 55 | 34 | 233 between 0 and 100 |
+----+----+----+-----------------------+
| 10 | 55 | 34 | 0 |
+----+----+----+-----------------------+
1 row in set (0.00 sec)
mysql> select 10 between 0 and 9;
+--------------------+
| 10 between 0 and 9 |
+--------------------+
| 0 |
+--------------------+
1 row in set (0.00 sec)
mysql> select 'y' between 'x' and 'z';
+-------------------------+
| 'y' between 'x' and 'z' |
+-------------------------+
| 1 |
+-------------------------+
1 row in set (0.00 sec)
mysql> select 'y' between 'm' and 'p';
+-------------------------+
| 'y' between 'm' and 'p' |
+-------------------------+
| 0 |
+-------------------------+
1 row in set (0.00 sec)
mysql> select 7 IN (1,2,3,4,5,6,7,8,9);
+--------------------------+
| 7 IN (1,2,3,4,5,6,7,8,9) |
+--------------------------+
| 1 |
+--------------------------+
1 row in set (0.00 sec)
mysql> select 7=NULL;
+--------+
| 7=NULL |
+--------+
| NULL |
+--------+
1 row in set (0.00 sec)
mysql> select Null IN (1,Null,2,3,4,5,6,7,8,9);
+----------------------------------+
| Null IN (1,Null,2,3,4,5,6,7,8,9) |
+----------------------------------+
| NULL |
+----------------------------------+
1 row in set (0.02 sec)
mysql> select 'mysql' like '_sql';
+---------------------+
| 'mysql' like '_sql' |
+---------------------+
| 0 |
+---------------------+
1 row in set (0.02 sec)
mysql> select 'MySQL' like '_sql';
+---------------------+
| 'MySQL' like '_sql' |
+---------------------+
| 0 |
+---------------------+
1 row in set (0.00 sec)
mysql> select 'MySQL' like '__sql';
+----------------------+
| 'MySQL' like '__sql' |
+----------------------+
| 1 |
+----------------------+
1 row in set (0.00 sec)
mysql> select 'zero' REGEXP '^ero?';
+-----------------------+
| 'zero' REGEXP '^ero?' |
+-----------------------+
| 0 |
+-----------------------+
1 row in set (0.04 sec)
mysql> select 'zero' REGEXP '^zer?';
+-----------------------+
| 'zero' REGEXP '^zer?' |
+-----------------------+
| 1 |
+-----------------------+
1 row in set (0.00 sec)
mysql> select not 1;
+-------+
| not 1 |
+-------+
| 0 |
+-------+
1 row in set (0.00 sec)
mysql> select not 1,(2=2);
+-------+-------+
| not 1 | (2=2) |
+-------+-------+
| 0 | 1 |
+-------+-------+
1 row in set (0.00 sec)
mysql> select not 1,not (2=2);
+-------+-----------+
| not 1 | not (2=2) |
+-------+-----------+
| 0 | 0 |
+-------+-----------+
1 row in set (0.00 sec)
You might also like
ERROR 1064 (42000) : You Have An Error in Your SQL Syntax Check The Manual That
PDF
No ratings yet
ERROR 1064 (42000) : You Have An Error in Your SQL Syntax Check The Manual That
18 pages
Introduction To ArcGIS Pro - Manual - Edited
PDF
100% (2)
Introduction To ArcGIS Pro - Manual - Edited
104 pages
Rightleft Join
PDF
No ratings yet
Rightleft Join
75 pages
MySQL Notes
PDF
No ratings yet
MySQL Notes
58 pages
Xii 07.07.21 Functions in SQL
PDF
No ratings yet
Xii 07.07.21 Functions in SQL
14 pages
Database Management (Questions From CBSE Board Exam)
PDF
No ratings yet
Database Management (Questions From CBSE Board Exam)
55 pages
20 5 25
PDF
No ratings yet
20 5 25
28 pages
DEVANSHU
PDF
No ratings yet
DEVANSHU
36 pages
String Func
PDF
No ratings yet
String Func
6 pages
Querying The Database - SELECT
PDF
No ratings yet
Querying The Database - SELECT
11 pages
Rahul SQL File 13.04.24
PDF
No ratings yet
Rahul SQL File 13.04.24
12 pages
DBMS Cia
PDF
No ratings yet
DBMS Cia
22 pages
Exp 3 Shrutika
PDF
No ratings yet
Exp 3 Shrutika
10 pages
Expt 3 A
PDF
No ratings yet
Expt 3 A
31 pages
Database Management Q and A
PDF
No ratings yet
Database Management Q and A
56 pages
SQL
PDF
No ratings yet
SQL
15 pages
String Functions Ip
PDF
No ratings yet
String Functions Ip
8 pages
MS SQL DBA Course Content
PDF
No ratings yet
MS SQL DBA Course Content
5 pages
Complete Mysql
PDF
No ratings yet
Complete Mysql
10 pages
Mysql Operators
PDF
No ratings yet
Mysql Operators
9 pages
p5 2340123
PDF
No ratings yet
p5 2340123
9 pages
Dbms Expt6 Delta
PDF
No ratings yet
Dbms Expt6 Delta
7 pages
Mysql Taniaaaaaaaaa (01 Des)
PDF
No ratings yet
Mysql Taniaaaaaaaaa (01 Des)
4 pages
Sol Notes
PDF
No ratings yet
Sol Notes
21 pages
NUMERIC
PDF
No ratings yet
NUMERIC
6 pages
My SQL File
PDF
No ratings yet
My SQL File
9 pages
1arith Op
PDF
No ratings yet
1arith Op
4 pages
DB Lab Basics
PDF
No ratings yet
DB Lab Basics
4 pages
SQL Queries 12 Ip
PDF
No ratings yet
SQL Queries 12 Ip
12 pages
MYSQL Warnings, String Functions
PDF
No ratings yet
MYSQL Warnings, String Functions
7 pages
SQL Func
PDF
No ratings yet
SQL Func
5 pages
SQL Queries - Madhu
PDF
No ratings yet
SQL Queries - Madhu
25 pages
SQL Rev 2
PDF
No ratings yet
SQL Rev 2
21 pages
DBMS Lab Ex 1& 2
PDF
No ratings yet
DBMS Lab Ex 1& 2
22 pages
Mysql Revison Part-1
PDF
No ratings yet
Mysql Revison Part-1
8 pages
7 9 1st July 2024 Session 3
PDF
No ratings yet
7 9 1st July 2024 Session 3
8 pages
DBMS EXp 2
PDF
No ratings yet
DBMS EXp 2
33 pages
SQL
PDF
No ratings yet
SQL
6 pages
copy
PDF
No ratings yet
copy
6 pages
Mysql Practicals
PDF
No ratings yet
Mysql Practicals
13 pages
Notes 1
PDF
No ratings yet
Notes 1
35 pages
Practica Mysql
PDF
No ratings yet
Practica Mysql
4 pages
Foreign
PDF
No ratings yet
Foreign
5 pages
NJ
PDF
No ratings yet
NJ
4 pages
My SQL: #To Show All Databses Availaible
PDF
No ratings yet
My SQL: #To Show All Databses Availaible
13 pages
Dbms Sachin
PDF
No ratings yet
Dbms Sachin
19 pages
Mysql Commands
PDF
No ratings yet
Mysql Commands
16 pages
Mark Analysis
PDF
No ratings yet
Mark Analysis
3 pages
My SQL Commands - Docx Rajat
PDF
No ratings yet
My SQL Commands - Docx Rajat
11 pages
DBMS Recap
PDF
No ratings yet
DBMS Recap
10 pages
Essential Mysql Cheat Sheet: by Via
PDF
No ratings yet
Essential Mysql Cheat Sheet: by Via
2 pages
Consultas Mysql
PDF
No ratings yet
Consultas Mysql
3 pages
Introduction To SAP and ABAP/4 Language
PDF
No ratings yet
Introduction To SAP and ABAP/4 Language
11 pages
Table Creation
PDF
No ratings yet
Table Creation
6 pages
Mysql
PDF
No ratings yet
Mysql
25 pages
Informen Consent
PDF
No ratings yet
Informen Consent
2 pages
Excel Mcqs
PDF
No ratings yet
Excel Mcqs
12 pages
Mysql: Dr. Hsiang-Fu Yu National Taipei University of Education Original by Qunfeng Dong
PDF
No ratings yet
Mysql: Dr. Hsiang-Fu Yu National Taipei University of Education Original by Qunfeng Dong
25 pages
DBMS Unit 4
PDF
No ratings yet
DBMS Unit 4
20 pages
SQL Cheatsheet
PDF
No ratings yet
SQL Cheatsheet
2 pages
Experiment No. 1 DBMS Creating A Database
PDF
No ratings yet
Experiment No. 1 DBMS Creating A Database
12 pages
Database Recovery Techniques
PDF
No ratings yet
Database Recovery Techniques
42 pages
BCA Sem-III & IV (NEW) 2019 PDF
PDF
No ratings yet
BCA Sem-III & IV (NEW) 2019 PDF
34 pages
MySQL Overview
PDF
No ratings yet
MySQL Overview
30 pages
Ism Lab File 1
PDF
No ratings yet
Ism Lab File 1
94 pages
Syllabus Excel 2013 Advance
PDF
No ratings yet
Syllabus Excel 2013 Advance
2 pages
100 Chat GPT Tips
PDF
No ratings yet
100 Chat GPT Tips
1 page
Oracle-Base - Alter Table ... Shrink Space Command - Online Segment Shrink For Tables, Lobs and Iots
PDF
No ratings yet
Oracle-Base - Alter Table ... Shrink Space Command - Online Segment Shrink For Tables, Lobs and Iots
4 pages
Skills Matrix - RQ00356
PDF
No ratings yet
Skills Matrix - RQ00356
22 pages
Irs Unit III
PDF
No ratings yet
Irs Unit III
74 pages
DBMS Unit 3
PDF
No ratings yet
DBMS Unit 3
25 pages
chp5 Bags
PDF
No ratings yet
chp5 Bags
28 pages
DataGrid (Grid View) Interview Questions Answers Guide
PDF
No ratings yet
DataGrid (Grid View) Interview Questions Answers Guide
8 pages
Cd3291 Dsa UNIT 3 4 5
PDF
No ratings yet
Cd3291 Dsa UNIT 3 4 5
24 pages
Unit 2 JOIN IN DBMS
PDF
No ratings yet
Unit 2 JOIN IN DBMS
27 pages
Introduction To Database
PDF
No ratings yet
Introduction To Database
24 pages
Lecture Plan
PDF
No ratings yet
Lecture Plan
1 page
Vivekananda School of Information Technology Database Management System Practical Lab Assignment 1
PDF
No ratings yet
Vivekananda School of Information Technology Database Management System Practical Lab Assignment 1
5 pages
DB - Theory Course Outline
PDF
No ratings yet
DB - Theory Course Outline
7 pages
JDBC ServLet
PDF
No ratings yet
JDBC ServLet
14 pages
Soft Des
PDF
No ratings yet
Soft Des
14 pages
Data Analytics Curriculum
PDF
No ratings yet
Data Analytics Curriculum
13 pages
Archival of Medical Records
PDF
No ratings yet
Archival of Medical Records
32 pages
Software Estimation
PDF
No ratings yet
Software Estimation
12 pages
Med Rec
PDF
No ratings yet
Med Rec
6 pages
Software Estimation-6
PDF
No ratings yet
Software Estimation-6
7 pages
IPG Media Brand - Data Engineer - Questionnaire
PDF
No ratings yet
IPG Media Brand - Data Engineer - Questionnaire
2 pages
Logical and Quantitative Techniques Logical and Quantitative Techniques
PDF
No ratings yet
Logical and Quantitative Techniques Logical and Quantitative Techniques
2 pages
ELK 8.x 安裝方式
PDF
No ratings yet
ELK 8.x 安裝方式
3 pages
DP 4 1 Practice DONE
PDF
No ratings yet
DP 4 1 Practice DONE
3 pages
Logical and Quantitative Techniques Logical and Quantitative Techniques
PDF
No ratings yet
Logical and Quantitative Techniques Logical and Quantitative Techniques
2 pages
Logical Quant Practice 6
PDF
No ratings yet
Logical Quant Practice 6
2 pages
DBMS Lab 4 Tasks
PDF
No ratings yet
DBMS Lab 4 Tasks
2 pages
Documents
Teaching Methods & Materials