This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT TOP 100 | |
ROW_NUMBER() OVER(ORDER BY Reputation DESC) AS [#], | |
Id AS [User Link], | |
Reputation | |
FROM | |
Users | |
WHERE | |
LOWER(Location) LIKE '%nigeria%' | |
OR UPPER(Location) LIKE '%NIGERIA%' | |
ORDER BY |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const SET_EXPRESSION = 'SET_EXPRESSION'; | |
export const CLEAR_EXPRESSION = 'CLEAR_EXPRESSION'; | |
export const DELETE_LAST_EXPRESSION_ENTRY = 'DELETE_LAST_EXPRESSION_ENTRY'; | |
export const EVALUATE_EXPRESSION = 'EVALUATE_EXPRESSION'; |