How to include numeric values in sql statements?



How to include numeric values in sql statements?..

Answer / Abhishek Nagar

"In MySQL, you can include numeric values directly in your SQL statements. For example:

```sql
SELECT * FROM YourTable WHERE column_name = 123;
```nReplace `YourTable` with the name of your table and `column_name` with the name of the column containing the numeric value you want to filter by."

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More MySQL Interview Questions

Why do we use mysql?

1 Answers  


How to get full name of monthname ?

4 Answers  


How to enter microseconds in sql statements?

1 Answers  


What is ndb in mysql?

1 Answers  


How show all tables in mysql query?

1 Answers  


What is the storage engine used for MySQL?

1 Answers  


Consider a scenario where you have to send an email to a client from the sql database. How do you think you can achieve this task?

1 Answers  


What is dblink?

1 Answers  


How can you count the total number of records of any table?

1 Answers  


List some comparisons operators used in mysql?

1 Answers  


How can you increase the performance of mysql select query?

1 Answers  


Why should I learn mysql?

1 Answers  


Categories