Search
 
SCRIPT & CODE EXAMPLE
 

SQL

mysql select column where has non int values

/*find rows with non int value*/
select * from my_table where abs(user_id) =0;
Comment

mysql select non integer values

select * from mytable where mycolumn NOT REGEXP '^-?[0-9]+$';
Comment

PREVIOUS NEXT
Code Example
Sql :: clone row from another table mysql 
Sql :: function plsql 
Sql :: sql commands 
Sql :: sqlite get columns for table 
Sql :: Insufficient memory to excute the sql query 
Sql :: sqlalchemy orm duplicate 
Sql :: initcap in mysql 
Sql :: sql day from datetime 
Sql :: mysql update LAST_INSERT_ID() 
Sql :: mysql privileges 
Sql :: sql xor 
Sql :: drop specific row postgresql 
Sql :: if exist column in table drop sql query mysql 
Sql :: what is 1=2 in sql 
Sql :: ignore duplicate rows in sqlite 
Sql :: oracle procedure teamplate 
Sql :: CREATE table schema using select 
Sql :: Selecting from a view SQL 
Sql :: mac mysql this is incompatible with sql_mode=only_full_group_by 
Sql :: sql check 
Sql :: create view in oracle sql 
Sql :: join vs union 
Sql :: increase space oracle aws instance 
Sql :: oracle change password expiration policy 
Sql :: modularity meaning in plsql 
Sql :: hive hbase create external table 
Sql :: ring SQLite sqlite_open 
Sql :: displaying different entities from different tables at once 
Sql :: creating h2 database in relative directory eclopse 
Sql :: dumping sql table 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =