-
-
Save hellofromtonya/c3f68f4539515d3a195748dcf4f99f0a to your computer and use it in GitHub Desktop.
Table Alias with AS in SQL
This file contains 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 posts.ID, posts.post_title | |
FROM wp_posts AS posts | |
WHERE posts.post_type = 'post' AND posts.post_status = 'publish'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment